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

commits at source.squeak.org commits at source.squeak.org
Fri Jan 15 00:32:58 UTC 2021


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

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

Name: VMMaker.oscog-eem.2933
Author: eem
Time: 14 January 2021, 4:32:48.434554 pm
UUID: 40063e45-0e58-4195-a825-e21b1df79769
Ancestors: VMMaker.oscog-eem.2932

Float>>coerceTo:sim: should handle #double as well.

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

Item was changed:
  ----- Method: Float>>coerceTo:sim: (in category '*VMMaker-interpreter simulator') -----
  coerceTo: cTypeString sim: interpreter
  
+ 	cTypeString = #float ifTrue:
- 	cTypeString = #'float' ifTrue:
  		[^self].
+ 	cTypeString = #double ifTrue:
+ 		[^self].
  	self halt!



More information about the Vm-dev mailing list