(&mut self)
| 72 | |
| 73 | impl<'gc> CallFrame<'gc> { |
| 74 | fn next_opcode(&mut self) -> OpCode { |
| 75 | let byte = self.closure.function[self.ip]; |
| 76 | self.ip += 1; |
| 77 | byte |
| 78 | } |
| 79 | |
| 80 | fn read_constant(&mut self, byte: u8) -> Value<'gc> { |
| 81 | self.closure.function.read_constant(byte) |