diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 11:56:58 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-10 11:56:58 +1300 |
commit | fd6b4471955dac64b7d40b7c31992c15d52b2460 (patch) | |
tree | 5b2561150e0eac0922a8ff40dd34da6a3ca76f7c /src/lib.rs | |
parent | 2d67476d48fcb33cd1c59cbc2e0f82872bc0c217 (diff) | |
download | assembler-fd6b4471955dac64b7d40b7c31992c15d52b2460.zip |
Move report-printing structs to separate module
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ mod context; mod errors; mod locators; mod resolver; -mod source_hierarchy; +mod reports; mod source_unit; mod tokeniser; @@ -13,6 +13,6 @@ pub use context::*; pub use errors::*; pub use locators::*; pub use resolver::*; -pub use source_hierarchy::*; +pub use reports::*; pub use source_unit::*; pub use tokeniser::*; |