From 1a97f8957539e9192bdb9176a8eafd4da101a857 Mon Sep 17 00:00:00 2001 From: Nadrieril Date: Tue, 7 May 2019 16:18:16 +0200 Subject: Small mistake --- dhall/src/core/value.rs | 2 +- dhall/src/phase/normalize.rs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'dhall/src') diff --git a/dhall/src/core/value.rs b/dhall/src/core/value.rs index 354c360..28fcb3e 100644 --- a/dhall/src/core/value.rs +++ b/dhall/src/core/value.rs @@ -40,7 +40,7 @@ pub(crate) struct AlphaLabel(Label); #[derive(Debug, Clone, PartialEq, Eq)] pub(crate) enum Value { /// Closures - Lam(AlphaLabel, Thunk, Thunk), + Lam(AlphaLabel, TypeThunk, Thunk), Pi(AlphaLabel, TypeThunk, TypeThunk), // Invariant: the evaluation must not be able to progress further. AppliedBuiltin(Builtin, Vec), diff --git a/dhall/src/phase/normalize.rs b/dhall/src/phase/normalize.rs index a48c299..5dfcfb6 100644 --- a/dhall/src/phase/normalize.rs +++ b/dhall/src/phase/normalize.rs @@ -339,7 +339,9 @@ pub(crate) fn normalize_one_layer(expr: ExprF) -> Value { ExprF::Embed(_) => unreachable!(), ExprF::Var(_) => unreachable!(), ExprF::Annot(x, _) => RetThunk(x), - ExprF::Lam(x, t, e) => RetValue(Lam(x.into(), t, e)), + ExprF::Lam(x, t, e) => { + RetValue(Lam(x.into(), TypeThunk::from_thunk(t), e)) + } ExprF::Pi(x, t, e) => RetValue(Pi( x.into(), TypeThunk::from_thunk(t), -- cgit v1.2.3