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