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

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

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

Name: Kernel-nice.1226
Author: nice
Time: 5 May 2019, 10:12:56.491163 am
UUID: b48136e7-9c94-45b5-b5f9-b2d73396097a
Ancestors: Kernel-nice.1225

Fix un-intentional leak of ternaryBinaryExponentationOf:
This is an experiment not ready for consumption.

Sorry for the extra commit.

=============== Diff against Kernel-nice.1225 ===============

Item was removed:
- ----- Method: Integer>>raisedToInteger: (in category 'mathematical functions') -----
- raisedToInteger: n
- (n < 3 or: [self highBitOfMagnitude * n < 2048]) ifTrue: [^super raisedToInteger: n].
- ^n ternaryBinaryExponentationOf: self!