From 76fc4cca62f5b955200b2c62cc85b69eea491ece Mon Sep 17 00:00:00 2001 From: Laurenz Date: Thu, 25 Mar 2021 21:32:33 +0100 Subject: =?UTF-8?q?Refactor=20alignments=20&=20directions=20=F0=9F=93=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Adds lang function - Refactors execution context - Adds StackChild and ParChild enums --- src/eval/mod.rs | 1 - 1 file changed, 1 deletion(-) (limited to 'src/eval') diff --git a/src/eval/mod.rs b/src/eval/mod.rs index 802e1347..88110d88 100644 --- a/src/eval/mod.rs +++ b/src/eval/mod.rs @@ -39,7 +39,6 @@ pub fn eval(env: &mut Env, tree: &Tree, scope: &Scope) -> Pass { pub type NodeMap = HashMap<*const Node, Value>; /// The context for evaluation. -#[derive(Debug)] pub struct EvalContext<'a> { /// The environment from which resources are gathered. pub env: &'a mut Env, -- cgit v1.2.3