soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
459 Bytes
JS code generator
emitVmmVersionOn: aStream
"Emit a version string macro suitable for identifying source code version
of this interpreter. This is expected to be used in conjunction with a similar
identifier for platform source code version, such the the VM can identify
the source code version for its platform source and matching VMMaker source."
aStream nextPutAll: 'var VMMAKER_VERSION = "';
nextPutAll: VMMaker versionString;
nextPut: $";
cr