(CommonTree opAST, short opcode, int arg)
| 124 | } |
| 125 | |
| 126 | public void emit1(CommonTree opAST, short opcode, int arg) { |
| 127 | emit(opAST, opcode); |
| 128 | ensureCapacity(Bytecode.OPND_SIZE_IN_BYTES); |
| 129 | writeShort(impl.instrs, ip, (short)arg); |
| 130 | ip += Bytecode.OPND_SIZE_IN_BYTES; |
| 131 | } |
| 132 | |
| 133 | public void emit2(CommonTree opAST, short opcode, int arg, int arg2) { |
| 134 | emit(opAST, opcode); |
no test coverage detected