summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/tck/tyexpr.rs
diff options
context:
space:
mode:
authorNadrieril2020-01-30 11:09:39 +0000
committerNadrieril2020-01-30 11:14:49 +0000
commit655f67fb29ca847f86c3e19338757e7b031d4f50 (patch)
treec7e7f73a1830cf254d04be485ac861880949d707 /dhall/src/semantics/tck/tyexpr.rs
parenta928c3c4f51d87fd942e8a81727962c00abf6808 (diff)
Move builtins-related code to its own module
Diffstat (limited to '')
-rw-r--r--dhall/src/semantics/tck/tyexpr.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/dhall/src/semantics/tck/tyexpr.rs b/dhall/src/semantics/tck/tyexpr.rs
index 114bb14..bf7c130 100644
--- a/dhall/src/semantics/tck/tyexpr.rs
+++ b/dhall/src/semantics/tck/tyexpr.rs
@@ -1,9 +1,8 @@
use crate::error::{TypeError, TypeMessage};
use crate::semantics::phase::normalize::normalize_tyexpr_whnf;
-use crate::semantics::phase::typecheck::rc;
use crate::semantics::phase::Normalized;
use crate::semantics::phase::{NormalizedExpr, ToExprOptions};
-use crate::semantics::{NameEnv, NzEnv, TyEnv, Value};
+use crate::semantics::{rc, NameEnv, NzEnv, TyEnv, Value};
use crate::syntax::{ExprKind, Span, V};
pub(crate) type Type = Value;