Yes I checked that too. BTW thanks - this is nice to open a bug tracker entry because like that we do not have open it just to close it. :)
>>> > I think the fixed bug was the similar 'Issue 1044: MethodContext > allInstances loops forever'. Not quite the same: > > 'From Pharo1.0beta of 16 May 2008 [Latest update: #10470] on 17 October 2009 > at 4:49:35 pm'! > > !Behavior methodsFor: 'accessing instances and variables' stamp: > 'MarcusDenker 10/17/2009 16:49'! > allInstances > "Answer a collection of all current instances of the receiver." > > | all inst next | > all := OrderedCollection new. > inst := self someInstance. > [inst == nil] > whileFalse: [ > next := inst nextInstance. > inst == all ifFalse: [all add: inst]. > inst := next]. > ^ all asArray! ! > > -- > View this message in context: > http://n2.nabble.com/Issue-1633-Object-allSubInstances-appears-to-loop-forever-tp4187269p4188409.html > Sent from the Pharo Smalltalk mailing list archive at Nabble.com. > > _______________________________________________ > Pharo-project mailing list > [email protected] > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
