summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-09-30 17:25:09 +0200
committerLaurenz <laurmaedje@gmail.com>2020-09-30 17:25:09 +0200
commit7cc279f7ae122f4c40592004dde89792c636b3c8 (patch)
treea71d3567950c147d41bfa649ca6cd76edb47cc4f /src/syntax/mod.rs
parent3c3730425f0a9a4241c4f57cb7f4d00b71db201e (diff)
Replace line/column with byte positions 🔢
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index fe887c2f..f442ba9e 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -1,9 +1,11 @@
//! Syntax types.
+mod lines;
mod span;
mod token;
mod tree;
+pub use lines::*;
pub use span::*;
pub use token::*;
pub use tree::*;