diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-10-01 11:32:48 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2020-10-01 11:32:48 +0200 |
| commit | 885bfec5d7524845b41e180fadc9cf5626157eec (patch) | |
| tree | f798e03d101d568a110a5c56f4a9bfa2be892928 /src/parse/mod.rs | |
| parent | 16f0bd430e0864a3bbd0139803e476be413cb3cb (diff) | |
Make syntax not depend on parse 📩
This would make it possible to split them into two separate crates.
Diffstat (limited to 'src/parse/mod.rs')
| -rw-r--r-- | src/parse/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 8c879d12..b62bd5d3 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -1,9 +1,11 @@ //! Parsing and tokenization. +mod lines; mod resolve; mod scanner; mod tokens; +pub use lines::*; pub use resolve::*; pub use scanner::*; pub use tokens::*; |
