[Vm-dev] VM Maker: VMMaker.oscog-eem.1668.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 25 02:38:05 UTC 2016


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.1668.mcz

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

Name: VMMaker.oscog-eem.1668
Author: eem
Time: 25 January 2016, 6:36:23.175497 pm
UUID: 1f0b27be-e423-42d3-a18d-1c7e292a4f14
Ancestors: VMMaker.oscog-eem.1667

Slang: fix another regression given the change in VMMaker.oscog-eem.1665 to eliding empty inlines.

=============== Diff against VMMaker.oscog-eem.1667 ===============

Item was changed:
  ----- Method: TStmtListNode>>endsWithReturn (in category 'testing') -----
  endsWithReturn
  	"Answer true if the last statement of this lock is a return."
  
+ 	^statements notEmpty
+ 	  and: [statements last isReturn or: [statements last isReturningIf]]!
- 	^statements last isReturn or: [statements last isReturningIf]!



More information about the Vm-dev mailing list