(&mut self)
| 9902 | } |
| 9903 | |
| 9904 | fn get_source_line_number(&mut self) -> OneIndexed { |
| 9905 | self.source_file |
| 9906 | .to_source_code() |
| 9907 | .line_index(self.current_source_range.start()) |
| 9908 | } |
| 9909 | |
| 9910 | fn mark_generator(&mut self) { |
| 9911 | self.current_code_info().flags |= bytecode::CodeFlags::GENERATOR |
no test coverage detected