The Inbox: Kernel-djr.432.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: Kernel-djr.432.mcz

commits-2
A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/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!


Reply | Threaded
Open this post in threaded view
|

Re: The Inbox: Kernel-djr.432.mcz

David T. Lewis
Moved to trunk, thanks to Danie Roux for the fix.

On Tue, Mar 23, 2010 at 03:44:03PM +0000, [hidden email] wrote:

> A new version of Kernel was added to project The Inbox:
> http://source.squeak.org/inbox/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.
>