Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.270.mcz==================== Summary ====================
Name: Kernel-nice.270
Author: nice
Time: 15 October 2009, 12:37:52 pm
UUID: 310ac212-23d7-4972-b7be-532e95d861e9
Ancestors: Kernel-nice.269
Fix MNU #empty while Debugging
=============== Diff against Kernel-nice.269 ===============
Item was changed:
----- Method: MethodProperties>>analogousCodeTo: (in category 'testing') -----
analogousCodeTo: aMethodProperties
pragmas
ifNil: [aMethodProperties pragmas notEmpty ifTrue: [^false]]
ifNotNil:
+ [aMethodProperties pragmas isEmpty ifTrue: [^false].
- [aMethodProperties pragmas empty ifTrue: [^false].
pragmas size ~= aMethodProperties pragmas size ifTrue:
[^false].
pragmas with: aMethodProperties pragmas do:
[:mine :others|
(mine analogousCodeTo: others) ifFalse: [^false]]].
^(self hasAtLeastTheSamePropertiesAs: aMethodProperties)
and: [aMethodProperties hasAtLeastTheSamePropertiesAs: self]!