Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.509.mcz==================== Summary ====================
Name: Kernel-ul.509
Author: ul
Time: 28 October 2010, 2:40:18.61 am
UUID: 63432d21-351a-624f-b52d-3181148441bd
Ancestors: Kernel-nice.508, Kernel-topa.508
- merged
=============== Diff against Kernel-nice.508 ===============
Item was added:
+ ----- Method: Behavior>>withAllSuperAndSubclassesDo: (in category 'enumerating') -----
+ withAllSuperAndSubclassesDo: aBlock
+ self allSuperclassesDo: aBlock.
+ aBlock value: self.
+ self allSubclassesDo: aBlock!