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