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