From 7cc279f7ae122f4c40592004dde89792c636b3c8 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Wed, 30 Sep 2020 17:25:09 +0200 Subject: =?UTF-8?q?Replace=20line/column=20with=20byte=20positions=20?= =?UTF-8?q?=F0=9F=94=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/syntax/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/syntax/mod.rs') 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::*; -- cgit v1.2.3