File size: 238 Bytes
8f3f8db
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
utilities
compileToJSMethodSelector: selector in: aClass
	"Compile a method to a JSMethod"

	^(Compiler new
		parse: (aClass sourceCodeAt: selector)
		in: aClass
		notifying: nil)
			asTranslationMethodOfClass: self translationMethodClass