(&mut self, value: Value<'gc>)
| 1583 | } |
| 1584 | |
| 1585 | fn emit_constant(&mut self, value: Value<'gc>) { |
| 1586 | let constant = self.make_constant(value); |
| 1587 | self.emit(OpCode::Constant(constant as u8)); |
| 1588 | } |
| 1589 | |
| 1590 | fn emit_return(&mut self) { |
| 1591 | if self.fn_type == FunctionType::Constructor { |
no test coverage detected