[squeak-dev] The Trunk: Kernel-mtf.421.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 3 12:49:45 UTC 2010


Matthew Fulmer uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mtf.421.mcz

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

Name: Kernel-mtf.421
Author: mtf
Time: 10 March 2010, 7:24:06.105 pm
UUID: 0d47896c-fa27-4804-b345-ea3c8a17c1d1
Ancestors: Kernel-ar.420

Preload a critical method just in case of load order issues. Part 1 of 4 of the fix for 
http://bugs.squeak.org/view.php?id=7158

=============== Diff against Kernel-ar.420 ===============

Item was added:
+ ----- Method: ProtoObject>>instVarsInclude: (in category 'system primitives') -----
+ instVarsInclude: anObject
+ "Answers true if anObject is among my named or indexed instance variables, and false otherwise"
+ 
+ 	<primitive: 132>
+ 	1 to: self class instSize do:
+ 		[:i | (self instVarAt: i) == anObject ifTrue: [^ true]].
+ 	1 to: self basicSize do:
+ 		[:i | (self basicAt: i) == anObject ifTrue: [^ true]].
+ 	^ false!




More information about the Squeak-dev mailing list