summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2019-08-16 20:05:23 +0200
committerNadrieril2019-08-16 20:05:23 +0200
commit9383d55718b86faf4c1734fe8fee3f99730499d4 (patch)
tree0319df4b3cd1e9d7b7d28f9f8b1f568ce50895e2 /dhall
parente0f5216215ccb7a4df85d80e11dd265cdb52a44f (diff)
Remove Const-optimization for now
Diffstat (limited to 'dhall')
-rw-r--r--dhall/src/core/thunk.rs19
1 files changed, 5 insertions, 14 deletions
diff --git a/dhall/src/core/thunk.rs b/dhall/src/core/thunk.rs
index cf7c097..db68169 100644
--- a/dhall/src/core/thunk.rs
+++ b/dhall/src/core/thunk.rs
@@ -45,11 +45,6 @@ pub enum TypedThunk {
// Any value, along with (optionally) its type
Untyped(Thunk),
Typed(Thunk, Box<Type>),
- // One of the base higher-kinded types.
- // Used to avoid storing the same tower ot Type->Kind->Sort
- // over and over again. Also enables having Sort as a value
- // even though it doesn't itself have a type.
- Const(Const),
}
impl ThunkInternal {
@@ -191,7 +186,6 @@ impl TypedThunk {
pub(crate) fn normalize_nf(&self) -> ValueF {
match self {
- TypedThunk::Const(c) => ValueF::Const(*c),
TypedThunk::Untyped(thunk) | TypedThunk::Typed(thunk, _) => {
thunk.normalize_nf().clone()
}
@@ -219,7 +213,10 @@ impl TypedThunk {
TypedThunk::Untyped(th)
}
pub(crate) fn from_const(c: Const) -> Self {
- TypedThunk::Const(c)
+ match type_of_const(c) {
+ Ok(t) => TypedThunk::from_valuef_and_type(ValueF::Const(c), t),
+ Err(_) => TypedThunk::from_valuef(ValueF::Const(c)),
+ }
}
pub(crate) fn from_valuef_and_type(v: ValueF, t: Type) -> Self {
TypedThunk::from_thunk_and_type(Thunk::from_valuef(v), t)
@@ -231,7 +228,6 @@ impl TypedThunk {
TypedThunk::Untyped(th) | TypedThunk::Typed(th, _) => {
th.to_valuef()
}
- TypedThunk::Const(c) => ValueF::Const(*c),
}
}
pub(crate) fn to_expr(&self) -> NormalizedSubExpr {
@@ -243,7 +239,6 @@ impl TypedThunk {
pub(crate) fn to_thunk(&self) -> Thunk {
match self {
TypedThunk::Untyped(th) | TypedThunk::Typed(th, _) => th.clone(),
- TypedThunk::Const(c) => Thunk::from_valuef(ValueF::Const(*c)),
}
}
pub(crate) fn to_type(&self) -> Type {
@@ -265,18 +260,16 @@ impl TypedThunk {
TypedThunk::Untyped(th) | TypedThunk::Typed(th, _) => {
th.normalize_mut()
}
- TypedThunk::Const(_) => {}
}
}
pub(crate) fn get_type(&self) -> Result<Cow<'_, Type>, TypeError> {
match self {
- TypedThunk::Untyped(_) => Err(TypeError::new(
+ TypedThunk::Untyped(th) => Err(TypeError::new(
&TypecheckContext::new(),
TypeMessage::Untyped,
)),
TypedThunk::Typed(_, t) => Ok(Cow::Borrowed(t)),
- TypedThunk::Const(c) => Ok(Cow::Owned(type_of_const(*c)?)),
}
}
}
@@ -313,7 +306,6 @@ impl Shift for TypedThunk {
th.shift(delta, var)?,
Box::new(t.shift(delta, var)?),
),
- TypedThunk::Const(c) => TypedThunk::Const(*c),
})
}
}
@@ -356,7 +348,6 @@ impl Subst<Typed> for TypedThunk {
th.subst_shift(var, val),
Box::new(t.subst_shift(var, val)),
),
- TypedThunk::Const(c) => TypedThunk::Const(*c),
}
}
}