[Vm-dev] VM Maker: Cog-eem.233.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Dec 26 02:05:37 UTC 2014


Eliot Miranda uploaded a new version of Cog to project VM Maker:
http://source.squeak.org/VMMaker/Cog-eem.233.mcz

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

Name: Cog-eem.233
Author: eem
Time: 25 December 2014, 6:05:20.643 pm
UUID: b4973571-93ff-4a24-b3ae-eff8bfc7142a
Ancestors: Cog-eem.232

Spurify instVarAt:put:.

=============== Diff against Cog-eem.232 ===============

Item was added:
+ ----- Method: SpurBootstrapPrototypes>>ObjectPROTOTYPEinstVarAt: (in category 'method prototypes') -----
+ ObjectPROTOTYPEinstVarAt: index
+ 	"Primitive. Answer a fixed variable in an object. The numbering of the variables
+ 	 corresponds to the named instance variables, followed by the indexed instance
+ 	 variables. Fail if the index is not an Integer or is not the index of a fixed variable.
+ 	 Essential. See Object documentation whatIsAPrimitive."
+ 
+ 	<primitive: 173 error: ec>
+ 	self primitiveFailed!

Item was added:
+ ----- Method: SpurBootstrapPrototypes>>ObjectPROTOTYPEinstVarAt:put: (in category 'method prototypes') -----
+ ObjectPROTOTYPEinstVarAt: index put: anObject
+ 	"Primitive. Store a value into a fixed variable in an object. The numbering of the
+ 	 variables corresponds to the named instance variables, followed by the indexed
+ 	 instance variables. Fail if the index is not an Integer or is not the index of a fixed
+ 	 variable. Essential. See Object documentation whatIsAPrimitive."
+ 
+ 	<primitive: 174 error: ec>
+ 	self primitiveFailed!



More information about the Vm-dev mailing list