The Trunk: Kernel-eem.1147.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-eem.1147.mcz

commits-2
Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.1147.mcz

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

Name: Kernel-eem.1147
Author: eem
Time: 24 January 2018, 8:45:41.289751 am
UUID: 5c2fb139-37ff-4c01-8bc3-1bfab7e7decb
Ancestors: Kernel-eem.1146

Object>>[basic]AddInstanceVarNamed:withValue: have been moved into into EToys.  In base Squeak this is code that belongs in ClassDescription.

=============== Diff against Kernel-eem.1146 ===============

Item was removed:
- ----- Method: Object>>addInstanceVarNamed:withValue: (in category 'accessing') -----
- addInstanceVarNamed: aName withValue: aValue
- "Add an instance variable named aName and give it value aValue"
- self class addInstVarName: aName asString.
- self instVarAt: self class instSize put: aValue!

Item was removed:
- ----- Method: Object>>basicAddInstanceVarNamed:withValue: (in category 'accessing') -----
- basicAddInstanceVarNamed: aName withValue: aValue
- "Add an instance variable named aName and give it value aValue"
- self class addInstVarName: aName asString.
- self instVarAt: self class instSize put: aValue!