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

@ -1,13 +1,12 @@
pub mod syntax_error;
mod syntax_text;
use std::{fmt, borrow::Borrow};
use self::syntax_text::SyntaxText;
use crate::{SmolStr, SyntaxKind, TextRange};
use rowan::{Types, TransparentNewType};
pub use self::syntax_error::{SyntaxError, SyntaxErrorKind, Location};
use crate::{
SmolStr, SyntaxKind, TextRange, SyntaxText,
syntax_error::SyntaxError,
};
pub use rowan::WalkEvent;
#[derive(Debug, Clone, Copy)]