summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/phase/typecheck.rs
diff options
context:
space:
mode:
authorNadrieril2019-12-27 16:48:33 +0000
committerNadrieril2020-01-17 10:06:00 +0000
commit015b76ce47af5b1b31661a934aee13843215c6b0 (patch)
tree2bc84a20b50ebd8a8161aefcdc11831595e3cfd4 /dhall/src/semantics/phase/typecheck.rs
parentce706817dcb5cb951c566410de92a4f85aae5361 (diff)
Construct T/Build closures in Expr space
Diffstat (limited to '')
-rw-r--r--dhall/src/semantics/phase/typecheck.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dhall/src/semantics/phase/typecheck.rs b/dhall/src/semantics/phase/typecheck.rs
index c8d934d..2e1cc02 100644
--- a/dhall/src/semantics/phase/typecheck.rs
+++ b/dhall/src/semantics/phase/typecheck.rs
@@ -291,10 +291,9 @@ fn type_of_builtin<E>(b: Builtin) -> Expr<E> {
}
pub(crate) fn builtin_to_value(b: Builtin) -> Value {
- let ctx = TyCtx::new();
Value::from_kind_and_type(
ValueKind::from_builtin(b),
- type_with(&ctx, type_of_builtin(b)).unwrap(),
+ typecheck(type_of_builtin(b)).unwrap(),
)
}