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