The Trunk: Kernel-mt.868.mcz

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

The Trunk: Kernel-mt.868.mcz

commits-2
Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.868.mcz

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

Name: Kernel-mt.868
Author: mt
Time: 12 August 2014, 9:34:24.549 am
UUID: 56fa5571-dfaa-e04c-b8a2-a972f345aaea
Ancestors: Kernel-mt.867

restored method category of #isKindOf: to "class membership"

=============== Diff against Kernel-mt.867 ===============

Item was changed:
+ ----- Method: Object>>isKindOf: (in category 'class membership') -----
- ----- Method: Object>>isKindOf: (in category '-- all --') -----
  isKindOf: aClass
  "Answer whether the class, aClass, is a superclass or class of the receiver."
  ^ self class == aClass or: [ self class inheritsFrom: aClass ]!