diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-17 08:59:05 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 11:41:55 +0200 |
commit | c169e78f120ea9be451f337306b8bff6c1fb4955 (patch) | |
tree | d04dd60435a2191f3d34b3680a87d92ff5df0edc /src/lib.rs | |
parent | 91074b6e7e6e8463f15ca26bc39e70b80f954227 (diff) |
refactor!: remove Span trait, just use Range
`std::mem::size_of::<Range<NoopOffset>>()` is 0
so there's no need to abstract over Range.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,8 +7,8 @@ mod emitter; mod entities; mod error; mod machine; +pub mod offset; pub mod reader; -pub mod spans; mod tokenizer; mod utils; |