(ST self, int ip)
| 480 | } |
| 481 | |
| 482 | void load_str(ST self, int ip) { |
| 483 | int strIndex = getShort(self.impl.instrs, ip); |
| 484 | ip += Bytecode.OPND_SIZE_IN_BYTES; |
| 485 | operands[++sp] = self.impl.strings[strIndex]; |
| 486 | } |
| 487 | |
| 488 | // TODO: refactor to remove dup'd code |
| 489 |