The Trunk: Collections-ar.255.mcz

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

The Trunk: Collections-ar.255.mcz

commits-2
Andreas Raab uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ar.255.mcz

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

Name: Collections-ar.255
Author: ar
Time: 22 December 2009, 12:37:15 pm
UUID: ea5f7972-be43-ba45-aef0-fb5730b47745
Ancestors: Collections-ul.254

CompiledMethodTrailer phase 1: Preparations.

=============== Diff against Collections-ul.254 ===============

Item was added:
+ ----- Method: ArrayedCollection>>createMethod:header: (in category '(obsolete) compiled method') -----
+ createMethod: numberOfBytesForAllButTrailer header: headerWord
+ | meth |
+
+ meth := CompiledMethod newMethod: numberOfBytesForAllButTrailer + self size header: headerWord.
+
+ "copy the encoded trailer data"
+
+ 1 to: self size do:
+ [:i | meth at: meth size - self size + i put: (self at: i)].
+
+ ^ meth!