[squeak-dev] The Trunk: Kernel-mt.1170.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 24 08:25:16 UTC 2018


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

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

Name: Kernel-mt.1170
Author: mt
Time: 24 May 2018, 10:24:50.225621 am
UUID: 722cd140-f6f2-8642-be85-61be05c77c92
Ancestors: Kernel-mt.1169

Harmonize method reference and class references.

=============== Diff against Kernel-mt.1169 ===============

Item was removed:
- ----- Method: CompiledCode>>printSignatureOn: (in category 'printing') -----
- printSignatureOn: aStream 
- 	"Print a string that can be used to access the currently installed method."
- 	aStream print: self methodClass;
- 		 nextPutAll: '>>';
- 		 nextPutAll: self selector storeString!

Item was added:
+ ----- Method: Object>>isClassReference (in category 'testing') -----
+ isClassReference
+ 
+ 	^ false!

Item was added:
+ ----- Method: Object>>isReference (in category 'testing') -----
+ isReference
+ 
+ 	^ self isClassReference or: [self isMethodReference]!



More information about the Squeak-dev mailing list