diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-02-16 22:05:32 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-02-16 22:05:32 +0000 |
commit | 94681450f82c7cf6b034548aebd0cc0279fd09ad (patch) | |
tree | 9d57aa9ab56b37b9446236e37ae8d7e88a1cd153 /src/parser/input.rs | |
parent | 97c0258bc07efe0cc41b7420a2294040e254d0b2 (diff) | |
parent | b920b3d50b53b5cfacd913d8a0f3b3d3f8111b45 (diff) |
Merge #52
52: Use stable rustfmt-preview r=matklad a=matklad
bors r+
Diffstat (limited to 'src/parser/input.rs')
-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 | } |