soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
452 Bytes
translating builtins
generateFromStack: aNode on: aStream indent: anInteger
| idList |
aNode args first isConstant ifFalse: [^self error: 'arg must be constant'].
idList := aNode args first value.
(1 to: idList size)
do: [:i |
aStream
nextPutAll: (idList at: i);
nextPutAll: ' = interpreterProxy->stackValue(';
nextPutAll: (idList size - i) asString;
nextPutAll: ')']
separatedBy: [aStream nextPut: $;; crtab: anInteger].