summaryrefslogtreecommitdiff
path: root/dhall/src/semantics/core/var.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/core/var.rs
parentce706817dcb5cb951c566410de92a4f85aae5361 (diff)
Construct T/Build closures in Expr space
Diffstat (limited to '')
-rw-r--r--dhall/src/semantics/core/var.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/dhall/src/semantics/core/var.rs b/dhall/src/semantics/core/var.rs
index 1548713..017a689 100644
--- a/dhall/src/semantics/core/var.rs
+++ b/dhall/src/semantics/core/var.rs
@@ -62,12 +62,6 @@ impl AlphaVar {
self.normal.clone()
}
}
- pub(crate) fn from_var_and_alpha(normal: V<Label>, alpha: usize) -> Self {
- AlphaVar {
- normal,
- alpha: V((), alpha),
- }
- }
}
impl AlphaLabel {