summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/tck/env.rs
diff options
context:
space:
mode:
authorNadrieril2020-02-06 17:35:54 +0000
committerNadrieril2020-02-09 20:13:23 +0000
commitdb1375eccd1e6943b504cd54ed17eb8f4d19c25f (patch)
treee83455535ba5af82159aafc8d14cdba8eee6c1a7 /dhall/src/semantics/tck/env.rs
parente4b3a879907b6dcc75d25847ae21a23d0201aae1 (diff)
Remove most reliance on types stored in Value
Diffstat (limited to '')
-rw-r--r--dhall/src/semantics/tck/env.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/dhall/src/semantics/tck/env.rs b/dhall/src/semantics/tck/env.rs
index 1fc711c..b3e7895 100644
--- a/dhall/src/semantics/tck/env.rs
+++ b/dhall/src/semantics/tck/env.rs
@@ -104,16 +104,16 @@ impl TyEnv {
&self.names
}
- pub fn insert_type(&self, x: &Label, t: Type) -> Self {
+ pub fn insert_type(&self, x: &Label, ty: Type) -> Self {
TyEnv {
names: self.names.insert(x),
- items: self.items.insert_type(t),
+ items: self.items.insert_type(ty),
}
}
- pub fn insert_value(&self, x: &Label, e: Value) -> Self {
+ pub fn insert_value(&self, x: &Label, e: Value, ty: Type) -> Self {
TyEnv {
names: self.names.insert(x),
- items: self.items.insert_value(e),
+ items: self.items.insert_value(e, ty),
}
}
pub fn lookup(&self, var: &V) -> Option<(AlphaVar, Type)> {