(&mut self)
| 34 | return; |
| 35 | } |
| 36 | self.last_source_line = Some(line); |
| 37 | // Without a file name the entry could never map back to a source view, |
| 38 | // and it would shadow real entries below it in the linked table. |
| 39 | if self.source_file.is_empty() { |
| 40 | return; |
| 41 | } |
| 42 | let file = self.source_file.clone(); |
| 43 | self.push_instruction(IrInstruction::SourceLine { file, line }); |
no outgoing calls
no test coverage detected