A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-tfel.508.mcz==================== Summary ====================
Name: Kernel-tfel.508
Author: tfel
Time: 25 October 2010, 5:57:52.272 pm
UUID: e4b5510d-6f93-47cb-9341-34faf8c91abd
Ancestors: Kernel-ul.507
Add method to get latest OmniBrowser working on trunk.
=============== Diff against Kernel-ul.507 ===============
Item was added:
+ ----- Method: Behavior>>withAllSuperAndSubclassesDo: (in category 'enumerating') -----
+ withAllSuperAndSubclassesDo: aBlock
+ self allSuperclassesDo: aBlock.
+ aBlock value: self.
+ self allSubclassesDoGently: aBlock!