File size: 245 Bytes
8f3f8db
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
public
codeString
	"Return a string containing all the C code for the code base. Used for testing."

	| stream |
	stream := ReadWriteStream on: (String new: 1000).
	self emitJSCodeOn: stream doInlining: true doAssertions: true.
	^stream contents