Expand description
This crate implements a sym file parser fully conforming to the specification.
The entry points to this crate is parse_line
/ parse_line_with_metadata
.
An example program is available on GitHub.
Enums§
- Location
- A symbol’s location.
- Parse
Error - An error encountered when parsing a sym file line.
Functions§
- parse_
line - Parses a sym file line.
- parse_
line_ with_ metadata - Parses a sym file line, including any metadata tokens.
Type Aliases§
- Symbols
- A collection of symbols.
- Uniquely
Named Syms - This is a convenience for when you expect to only refer to symbols by name. Prefer
Symbols
otherwise.