使用时
SomeClass compile: someSourceString
返回包含方法名称的符号。有什么理由不CompiledMethod
返回一个实例吗?有几个测试,例如:
tutu compile: 'foo'.
self deny: (tutu >> #foo) allLiterals last key isNil.
是否有任何返回编译方法的方法,例如:
compileMethod: aString
^ self >> (self compile: aString)