The Trunk: System-eem.941.mcz

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

The Trunk: System-eem.941.mcz

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

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

Name: System-eem.941
Author: eem
Time: 23 March 2017, 11:38:00.919125 am
UUID: 37242d96-5f6d-43ac-bbd5-ed33537b04c9
Ancestors: System-ul.940

Move methodReference up from CompiledMethod to CompiledCode.

=============== Diff against System-ul.940 ===============

Item was added:
+ ----- Method: CompiledCode>>methodReference (in category '*System-Support') -----
+ methodReference
+ | class selector |
+ class := self methodClass ifNil: [^nil].
+ selector := self selector ifNil: [^nil].
+ ^MethodReference class: class selector: selector.
+ !

Item was removed:
- ----- Method: CompiledMethod>>methodReference (in category '*System-Support') -----
- methodReference
- | class selector |
- class := self methodClass ifNil: [^nil].
- selector := self selector ifNil: [^nil].
- ^MethodReference class: class selector: selector.
- !