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