summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/hir.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/src/semantics/hir.rs')
-rw-r--r--dhall/src/semantics/hir.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dhall/src/semantics/hir.rs b/dhall/src/semantics/hir.rs
index 2784ecb..683dbbb 100644
--- a/dhall/src/semantics/hir.rs
+++ b/dhall/src/semantics/hir.rs
@@ -62,8 +62,7 @@ impl Hir {
/// Eval the Hir. It will actually get evaluated only as needed on demand.
pub fn eval(&self, env: &NzEnv) -> Value {
- // Value::new_thunk(env, self.clone())
- todo!()
+ Value::new_thunk(env, self.clone())
}
/// Eval a closed Hir (i.e. without free variables). It will actually get evaluated only as
/// needed on demand.