diff options
author | Aleksey Kladov <[email protected]> | 2018-02-16 22:01:38 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-02-16 22:05:07 +0000 |
commit | b920b3d50b53b5cfacd913d8a0f3b3d3f8111b45 (patch) | |
tree | 9d57aa9ab56b37b9446236e37ae8d7e88a1cd153 /src/parser | |
parent | 97c0258bc07efe0cc41b7420a2294040e254d0b2 (diff) |
Use stable rustfmt-preview
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 | } |