[Pkg] The Trunk: Collections-ar.255.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Dec 22 11:37:45 UTC 2009


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!



More information about the Packages mailing list