The Trunk: Kernel-dtl.836.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-dtl.836.mcz

commits-2
David T. Lewis uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-dtl.836.mcz

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

Name: Kernel-dtl.836
Author: dtl
Time: 16 February 2014, 2:19:44.092 pm
UUID: 410e695f-7f23-43e4-9dc2-d292b9954f0d
Ancestors: Kernel-cmm.835

Do not allow either basicNew: or basicNew for CompiledMethods because CompiledMethods may only be created with newMethod:header: (otherwise a VM crash may result).

=============== Diff against Kernel-cmm.835 ===============

Item was added:
+ ----- Method: CompiledMethod class>>basicNew (in category 'instance creation') -----
+ basicNew
+
+ self error: 'CompiledMethods may only be created with newMethod:header:' !