move all parsing related bits to a separate module

This commit is contained in:
Aleksey Kladov 2019-02-20 15:47:32 +03:00
parent 9d0cda4bc8
commit 5222b8aba3
31 changed files with 78 additions and 47 deletions

View file

@ -1,4 +1,3 @@
mod builder;
pub mod syntax_error;
mod syntax_text;
@ -8,7 +7,6 @@ use self::syntax_text::SyntaxText;
use crate::{SmolStr, SyntaxKind, TextRange};
use rowan::{Types, TransparentNewType};
pub(crate) use self::builder::GreenBuilder;
pub use self::syntax_error::{SyntaxError, SyntaxErrorKind, Location};
pub use rowan::WalkEvent;