diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-10-24 19:10:03 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-10-24 19:10:03 +0200 |
| commit | b4be25e43b1ee9da924d13b7f2e8289f12bd2c3b (patch) | |
| tree | a21fbec7e6907993463d57b8c75758d2014cebeb /src/lib.rs | |
| parent | ecf0ff4d054f11c79ec0ddbbdf45f3dfcf9fc8d7 (diff) | |
Prettify peeking and rearrange syntax/parsing modules 🧶
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -22,9 +22,8 @@ use toddle::query::{FontLoader, FontProvider, SharedFontLoader}; use crate::func::Scope; use crate::layout::{layout_tree, LayoutContext, MultiLayout}; use crate::layout::{Alignment, Flow, LayoutError, LayoutResult, LayoutSpace}; -use crate::parsing::{parse, ParseContext, ParseError, ParseResult}; +use crate::syntax::{SyntaxTree, parse, ParseContext, ParseError, ParseResult}; use crate::style::{PageStyle, TextStyle}; -use crate::syntax::SyntaxTree; #[macro_use] mod macros; @@ -33,7 +32,6 @@ pub mod export; pub mod func; pub mod layout; pub mod library; -pub mod parsing; pub mod size; pub mod style; pub mod syntax; |
