flatten modules

This commit is contained in:
Aleksey Kladov 2019-02-20 16:16:14 +03:00
parent 9f6883fbf1
commit a4a1e08ab8
15 changed files with 37 additions and 40 deletions

View file

@ -5,15 +5,16 @@ use std::cell::Cell;
use crate::{
SmolStr,
syntax_node::syntax_error::{ParseError, SyntaxError},
syntax_error::{ParseError, SyntaxError},
parsing::{
lexer::Token,
parser_api::Parser,
parser_impl::{
event::{Event, EventProcessor},
input::{InputPosition, ParserInput},
lexer::Token,
parser_api::Parser,
parser_impl::{
event::{Event, EventProcessor},
input::{InputPosition, ParserInput},
},
},
}};
};
use crate::SyntaxKind::{self, EOF, TOMBSTONE};