(CommonTree opAST, short opcode, int arg, int arg2)
| 133 | } |
| 134 | |
| 135 | public void emit2(CommonTree opAST, short opcode, int arg, int arg2) { |
| 136 | emit(opAST, opcode); |
| 137 | ensureCapacity(Bytecode.OPND_SIZE_IN_BYTES*2); |
| 138 | writeShort(impl.instrs, ip, (short)arg); |
| 139 | ip += Bytecode.OPND_SIZE_IN_BYTES; |
| 140 | writeShort(impl.instrs, ip, (short)arg2); |
| 141 | ip += Bytecode.OPND_SIZE_IN_BYTES; |
| 142 | } |
| 143 | |
| 144 | public void emit2(CommonTree opAST, short opcode, String s, int arg2) { |
| 145 | int i = defineString(s); |
nothing calls this directly
no test coverage detected