(buf: &mut Vec<u8>, v: u16)
| 185 | |
| 186 | /// Iterate the pc-to-source table entries (ascending by address). |
| 187 | pub fn line_table_iter(&self) -> impl Iterator<Item = LineEntry> + '_ { |
| 188 | self.line_table.iter().copied() |
| 189 | } |
| 190 | |
| 191 | /// Source location covering `addr` as `(file, 1-based line)`: the greatest |
| 192 | /// entry not exceeding `addr`; line-0 module-end sentinels read as none. |
no outgoing calls
no test coverage detected