(ST self, int ip)
| 452 | } |
| 453 | |
| 454 | void load_str(ST self, int ip) { |
| 455 | int strIndex = getShort(self.impl.instrs, ip); |
| 456 | ip += Bytecode.OPND_SIZE_IN_BYTES; |
| 457 | operands[++sp] = self.impl.strings[strIndex]; |
| 458 | } |
| 459 | |
| 460 | // TODO: refactor to remove dup'd code |
| 461 |