scratch0-5 / utils /VMMakerJS.package /JSMethod.class /instance /emitJSFunctionHeader.generator..st
soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
360 Bytes
JS code generation
emitJSFunctionHeader: aStream generator: aCodeGen
"Emit a C function header for this method onto the given stream."
properties ifNotNil:
[(properties at: #api: ifAbsent: []) ifNotNil:
[:pragma|
aStream nextPutAll: (pragma argumentAt: 1).
^self]].
self emitJSFunctionHeader: aStream generator: aCodeGen newlineBeforeName: false