diff options
Diffstat (limited to 'src/parser')
-rw-r--r-- | src/parser/input.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parser/input.rs b/src/parser/input.rs index 4d74ac1b1..13589467b 100644 --- a/src/parser/input.rs +++ b/src/parser/input.rs | |||
@@ -5,9 +5,7 @@ use super::is_insignificant; | |||
5 | use std::ops::{Add, AddAssign}; | 5 | use std::ops::{Add, AddAssign}; |
6 | 6 | ||
7 | pub(crate) struct ParserInput<'t> { | 7 | pub(crate) struct ParserInput<'t> { |
8 | #[allow(unused)] | ||
9 | text: &'t str, | 8 | text: &'t str, |
10 | #[allow(unused)] | ||
11 | start_offsets: Vec<TextUnit>, | 9 | start_offsets: Vec<TextUnit>, |
12 | tokens: Vec<Token>, // non-whitespace tokens | 10 | tokens: Vec<Token>, // non-whitespace tokens |
13 | } | 11 | } |