Spaces:
Running
Running
File size: 459 Bytes
8f3f8db |
1 2 3 4 5 6 7 8 9 10 11 12 |
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
|