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

commits at source.squeak.org commits at source.squeak.org
Wed Jun 15 00:31:35 UTC 2022


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

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

Name: VMMaker.oscog-eem.3190
Author: eem
Time: 14 June 2022, 5:31:11.343683 pm
UUID: 14a00f3f-f33e-49f5-a8d3-7021f5deccd5
Ancestors: VMMaker.oscog-eem.3189

findInterned: => lookup: now that findInterned: is deprecated.

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

Item was changed:
  ----- Method: TMethod>>returnType: (in category 'accessing') -----
  returnType: aString
  	"Set the type of the values returned by this method.
  	 This string will be used in the C declaration of this function.
  	 If the type exists as a symbol, use that."
  
  	returnType := aString isSymbol
  					ifTrue: [aString]
+ 					ifFalse: [(Symbol lookup: aString) ifNil: [aString]]!
- 					ifFalse: [(Symbol findInterned: aString) ifNil: [aString]]!



More information about the Vm-dev mailing list