aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/parsing/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/parsing/parser.rs')
-rw-r--r--crates/ra_syntax/src/parsing/parser.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/ra_syntax/src/parsing/parser.rs b/crates/ra_syntax/src/parsing/parser.rs
index 988fcb518..923b0f2b2 100644
--- a/crates/ra_syntax/src/parsing/parser.rs
+++ b/crates/ra_syntax/src/parsing/parser.rs
@@ -3,10 +3,9 @@ use std::cell::Cell;
3use drop_bomb::DropBomb; 3use drop_bomb::DropBomb;
4 4
5use crate::{ 5use crate::{
6 syntax_error::ParseError,
7 SyntaxKind::{self, ERROR, EOF, TOMBSTONE}, 6 SyntaxKind::{self, ERROR, EOF, TOMBSTONE},
8 parsing::{ 7 parsing::{
9 TokenSource, 8 TokenSource, ParseError,
10 token_set::TokenSet, 9 token_set::TokenSet,
11 event::Event, 10 event::Event,
12 }, 11 },