diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 12:57:52 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 12:57:52 +1300 |
commit | 6ceec5361c80b466f4a2a3719efb09ad6d6efa99 (patch) | |
tree | 2303ba2038e3ce835100a0b60ad2c54614506533 /src/reports/mod.rs | |
parent | d5f5489debcc23aebef31f13d92a6372dea1641d (diff) | |
download | assembler-6ceec5361c80b466f4a2a3719efb09ad6d6efa99.zip |
Create struct for reporting in detail the symbols in a resolver
This is used for debugging symbol definition and resolution issues.
Diffstat (limited to 'src/reports/mod.rs')
-rw-r--r-- | src/reports/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/reports/mod.rs b/src/reports/mod.rs index c2e941d..49fdff7 100644 --- a/src/reports/mod.rs +++ b/src/reports/mod.rs @@ -1,8 +1,10 @@ mod resolver_error; mod source_hierarchy; +mod source_symbols; pub use resolver_error::*; pub use source_hierarchy::*; +pub use source_symbols::*; use crate::*; |