diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-02-04 08:38:56 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-02-04 08:39:24 +1300 |
commit | 8ccb5b96f51bcf8e1a1c3e81d1305ff08825f9b1 (patch) | |
tree | f11318f8f98d7b39361faf0932b72d6dce1e3cd8 /src/locators.rs | |
parent | 93b2bc229a8347a925df819b2d6199a1a6066cf0 (diff) | |
download | assembler-8ccb5b96f51bcf8e1a1c3e81d1305ff08825f9b1.zip |
Rename locator sub-modules
Diffstat (limited to 'src/locators.rs')
-rw-r--r-- | src/locators.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/locators.rs b/src/locators.rs index 1d14cf4..b7db1ee 100644 --- a/src/locators.rs +++ b/src/locators.rs @@ -1,5 +1,5 @@ -mod bytecode_location; -mod source_location; +mod bytecode; +mod source; -pub use bytecode_location::*; -pub use source_location::*; +pub use bytecode::*; +pub use source::*; |