From 9a845a610aaf42aaba301d7b0ce1c88096d36915 Mon Sep 17 00:00:00 2001 From: tslil Date: Sat, 18 Oct 2025 15:15:02 +0100 Subject: Beginning lexing & parsing work, probably looking at hand rolled recursive descent parser --- rprt-engine/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rprt-engine/src/lib.rs') diff --git a/rprt-engine/src/lib.rs b/rprt-engine/src/lib.rs index 416b65f..4d9e07a 100644 --- a/rprt-engine/src/lib.rs +++ b/rprt-engine/src/lib.rs @@ -1,7 +1,7 @@ // RPRT Engine - Core text editing functionality pub mod buffer; +pub mod expression; +pub mod parser; pub mod selection; - -pub use buffer::*; -pub use selection::*; +pub mod token; -- cgit v1.2.3