[squeak-dev] The Trunk: Kernel-djr.432.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 24 03:06:23 UTC 2010


A new version of Kernel was added to project The Trunk:
http://source.squeak.org/trunk/Kernel-djr.432.mcz

==================== Summary ====================

Name: Kernel-djr.432
Author: djr
Time: 23 March 2010, 5:43:36.668 pm
UUID: 2e0904c5-b15c-4c07-9915-1cf2b51e0410
Ancestors: Kernel-nice.431

Fix rootsOfTheWorld, broken since the SmalltalkImage refactoring.

=============== Diff against Kernel-nice.431 ===============

Item was changed:
  ----- Method: Class class>>rootsOfTheWorld (in category 'inquiries') -----
  rootsOfTheWorld
  	"return a collection of classes which have a nil superclass"
+ 	^(Smalltalk globals select: [:each | each isBehavior and: [each superclass isNil]]) asOrderedCollection!
- 	^(Smalltalk select: [:each | each isBehavior and: [each superclass isNil]]) asOrderedCollection!




More information about the Squeak-dev mailing list