From 20022c4544569049c39c90cbf95aa400692b4c00 Mon Sep 17 00:00:00 2001 From: Philipp Leeb Date: Sat, 18 Nov 2023 09:00:59 +0100 Subject: [PATCH] Introduced pub access-modifier for include_loggic module to expose FileStack from outside the library. --- parser/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/src/lib.rs b/parser/src/lib.rs index 51ba636..0e9ce8e 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -12,7 +12,7 @@ lalrpop_mod!(#[allow(clippy::all)] pub lang); use log::debug; mod errors; -mod include_logic; +pub mod include_logic; mod parser_logic; mod syntax_sugar_traits; mod syntax_sugar_remover;