[squeak-dev] The Trunk: Compiler-eem.288.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 2 21:22:35 UTC 2014


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

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

Name: Compiler-eem.288
Author: eem
Time: 2 September 2014, 2:22:13.42 pm
UUID: 79749887-066e-4675-9b9a-c39cae7f4ad4
Ancestors: Compiler-eem.287

Provide support for fixing ContextPart>>#quickSend:to:with:super:

=============== Diff against Compiler-eem.287 ===============

Item was added:
+ ----- Method: BytecodeEncoder class>>isReturnTopFromMethodAt:in: (in category 'instruction stream support') -----
+ isReturnTopFromMethodAt: pc in: method
+ 	"Answer whether the bytecode at pc is a return stack top from method."
+ 
+ 	self subclassResponsibility!

Item was added:
+ ----- Method: EncoderForV3 class>>isReturnTopFromMethodAt:in: (in category 'instruction stream support') -----
+ isReturnTopFromMethodAt: pc in: method
+ 	"Answer whether the bytecode at pc is a return stack top from method."
+ 
+ 	^(method at: pc) = 124!



More information about the Squeak-dev mailing list