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