summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-12-31 17:05:00 +0100
committerLaurenz <laurmaedje@gmail.com>2020-12-31 17:48:56 +0100
commit4069f0744dc24c05d5a6fd6d0530984c4c7ff881 (patch)
tree64fb7211e638462779b03b4ae5b2ea0cc25d23d7 /src/syntax/mod.rs
parentba3d43f7b2a18984be27f3d472884a19f3adce4c (diff)
Parsing improvements 🧽
- Simplified scanner code - Peek eagerly - Skip whitespace and comments automatically in header mode - Parse simple block expressions - Move literal definitions into expression module - Raw resolving tests
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index 81702201..970cd283 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -2,14 +2,12 @@
mod expr;
mod ident;
-mod lit;
mod node;
mod span;
mod token;
pub use expr::*;
pub use ident::*;
-pub use lit::*;
pub use node::*;
pub use span::*;
pub use token::*;