Look up a section by kind, returning its byte content (or an empty slice).
(&self, kind: &SectionKind)
| 44 | pub(crate) global_symbols: Vec<String>, |
| 45 | pub(crate) relocations: Vec<RelocationRecord>, |
| 46 | // pc-to-source line table (ascending by addr) and the file names it indexes. |
| 47 | pub(crate) line_table: Vec<LineEntry>, |
| 48 | pub(crate) file_table: Vec<String>, |
| 49 | } |
| 50 | |
| 51 | impl AssembledOutput { |
| 52 | pub fn new() -> Self { |
| 53 | Self::default() |
| 54 | } |
| 55 |
no outgoing calls
no test coverage detected