The Trunk: Kernel-nice.830.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-nice.830.mcz

commits-2
Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.830.mcz

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

Name: Kernel-nice.830
Author: nice
Time: 9 January 2014, 12:13:16.739 am
UUID: 80247214-23da-4bd8-9cf1-5903321dcbd4
Ancestors: Kernel-fbs.829

Protect against (SmallInteger new: 0) at image side because it can currently crash the VM.
See http://stackoverflow.com/questions/20621119/how-to-print-an-integer-to-transcript

=============== Diff against Kernel-fbs.829 ===============

Item was added:
+ ----- Method: SmallInteger class>>basicNew: (in category 'instance creation') -----
+ basicNew: sizeRequested
+
+ self error: 'SmallIntegers can only be created by performing arithmetic'!