From 60eb76e4c339968db82db2736cef4ba81a62e4ee Mon Sep 17 00:00:00 2001 From: sixfold Date: Sun, 1 Sep 2024 15:00:40 -0400 Subject: [PATCH] Export `ContextValue` --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index c8c55ed..abe9a01 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -168,6 +168,7 @@ fn init() { pub type Value = value::Value; pub type Context = context::Context; +pub type ContextValue = context::ContextValue; pub type Result = define::Result; pub type ExprAST<'a> = parser::ExprAST<'a>; pub type InfixOpType = operator::InfixOpType;