[squeak-dev] The Trunk: Kernel-eem.884.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Nov 19 20:17:22 UTC 2014


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

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

Name: Kernel-eem.884
Author: eem
Time: 19 November 2014, 12:16:37.49 pm
UUID: 826d63dd-9356-4847-9022-a7fb3dc3aa44
Ancestors: Kernel-eem.883

Reimplement SmallInteger class>>minVal & maxVal to
answer the values computed at start-up.

=============== Diff against Kernel-eem.883 ===============

Item was changed:
  ----- Method: SmallInteger class>>maxVal (in category 'constants') -----
  maxVal
  	"Answer the maximum value for a SmallInteger."
+ 	^maxVal!
- 	^ 16r3FFFFFFF!

Item was changed:
  ----- Method: SmallInteger class>>minVal (in category 'constants') -----
  minVal
  	"Answer the minimum value for a SmallInteger."
+ 	^minVal!
- 	^ -16r40000000!



More information about the Squeak-dev mailing list