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