(CommonTree id)
| 92 | } |
| 93 | |
| 94 | public void setOption(CommonTree id) { |
| 95 | Interpreter.Option O = Compiler.supportedOptions.get(id.getText()); |
| 96 | emit1(id, Bytecode.INSTR_STORE_OPTION, O.ordinal()); |
| 97 | } |
| 98 | |
| 99 | public void func(Token templateToken, CommonTree id) { |
| 100 | Short funcBytecode = Compiler.funcs.get(id.getText()); |