I looked more into it, and here is a smaller example:
Gofer new�
smalltalkhubUser: 'Moose' project: 'MooseAlgos';
package: 'Moose-Algos-Graph';
load
This one does open the debugger, so the other emergency evaluator issue comes from somewhere else.
The problem seems to come from a Trait being defined in this package, and loading this trait triggers ClassModifiedClassDefinition which stumbles in�
ClassModifiedClassDefinition>>isPropagation�
"If there is not slot changes, I can assume that there is a propagation (the change is in one of the superclasses)"
self oldClassDefinition layout ifNil: [ ^ false ].
^ self newClassDefinition layout instanceVariables = self oldClassDefinition layout instanceVariables
(the method was added 3 days ago by Ben)
Doru