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

commits at source.squeak.org commits at source.squeak.org
Wed Nov 18 18:45:00 UTC 2015


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

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

Name: VMMaker.oscog-eem.1525
Author: eem
Time: 18 November 2015, 10:43:11.992 am
UUID: 5266f3ec-ae14-4584-8c0a-dd024e4efa4a
Ancestors: VMMaker.oscog-rmacnak.1524

Fix Slang regression.  TSendNode>>isSameAs: must take into account the receiver!!

=============== Diff against VMMaker.oscog-rmacnak.1524 ===============

Item was changed:
  ----- Method: TSendNode>>isSameAs: (in category 'comparing') -----
  isSameAs: aTParseNode
  	(aTParseNode isSend
+ 	 and: [selector == aTParseNode selector
+ 	 and: [receiver isSameAs: aTParseNode receiver]]) ifFalse:
- 	 and: [selector == aTParseNode selector]) ifFalse:
  		[^false].
  	arguments with: aTParseNode args do:
  		[:a :b|
  		(a isSameAs: b) ifFalse:
  			[^false]].
  	^true!



More information about the Vm-dev mailing list