Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.2441.mcz==================== Summary ====================
Name: VMMaker.oscog-eem.2441
Author: eem
Time: 18 September 2018, 3:45:34.562807 pm
UUID: 6617be67-a815-4239-a328-88ac9e9c6bd9
Ancestors: VMMaker.oscog-eem.2440
Make sure is:KindOf: has a valid return type.
=============== Diff against VMMaker.oscog-eem.2440 ===============
Item was changed:
----- Method: InterpreterProxy>>is:KindOf: (in category 'testing') -----
is: oop KindOf: aString
"InterpreterProxy new is: 42 KindOf: 'Number'"
+ <var: #aString type: 'char *'>
+ <returnTypeC: #sqInt>
- <var: #aString type:'char *'>
(Smalltalk at: aString asSymbol ifAbsent:[nil])
ifNil:[false]
ifNotNil: [:theClass| oop isKindOf: theClass]!