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