soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
417 Bytes
utilities
cCodeForMethod: selector
"Answer a string containing the C code for the given method."
"Example:
((JSCodeGenerator new initialize addClass: TestCClass1; prepareMethods)
cCodeForMethod: #ifTests)"
| m s |
m := self methodNamed: selector.
m = nil ifTrue: [ self error: 'method not found in code base: ', selector ].
s := (ReadWriteStream on: '').
m emitJSCodeOn: s generator: self.
^ s contents