diff options
author | Nadrieril | 2019-04-27 15:28:16 +0200 |
---|---|---|
committer | Nadrieril | 2019-04-27 15:28:16 +0200 |
commit | a987d01a8d1248f35ba19babb66aebabfad47a6d (patch) | |
tree | 7b4b82a63a4895dc7966a796701c33b7a1fb9b89 /dhall/src | |
parent | 7517610921935727218e94d4ec8116c15e3419ac (diff) |
Define new intermediate expression type
Diffstat (limited to '')
-rw-r--r-- | dhall/src/expr.rs | 7 | ||||
-rw-r--r-- | dhall/src/normalize.rs | 55 |
2 files changed, 43 insertions, 19 deletions
diff --git a/dhall/src/expr.rs b/dhall/src/expr.rs index a548d32..6048928 100644 --- a/dhall/src/expr.rs +++ b/dhall/src/expr.rs @@ -46,6 +46,13 @@ pub(crate) struct Typed<'a>( derive_other_traits!(Typed); #[derive(Debug, Clone)] +pub(crate) struct PartiallyNormalized<'a>( + pub(crate) crate::normalize::WHNF, + pub(crate) Option<Type<'static>>, + pub(crate) PhantomData<&'a ()>, +); + +#[derive(Debug, Clone)] pub(crate) struct Normalized<'a>( pub(crate) SubExpr<X, X>, pub(crate) Option<Type<'static>>, diff --git a/dhall/src/normalize.rs b/dhall/src/normalize.rs index 7d19ec0..14b062f 100644 --- a/dhall/src/normalize.rs +++ b/dhall/src/normalize.rs @@ -9,15 +9,27 @@ use dhall_core::{ }; use dhall_generator as dhall; -use crate::expr::{Normalized, Typed}; +use crate::expr::{Normalized, PartiallyNormalized, Typed}; type InputSubExpr = SubExpr<X, Normalized<'static>>; type OutputSubExpr = SubExpr<X, X>; impl<'a> Typed<'a> { + /// Reduce an expression to its normal form, performing beta reduction + /// + /// `normalize` does not type-check the expression. You may want to type-check + /// expressions before normalizing them since normalization can convert an + /// ill-typed expression into a well-typed expression. + /// + /// However, `normalize` will not fail if the expression is ill-typed and will + /// leave ill-typed sub-expressions unevaluated. + /// pub fn normalize(self) -> Normalized<'a> { - Normalized( - normalize( + self.normalize_whnf().normalize() + } + pub(crate) fn normalize_whnf(self) -> PartiallyNormalized<'a> { + PartiallyNormalized( + normalize_whnf( NormalizationContext::from_typecheck_ctx(&self.2), self.0, ), @@ -36,6 +48,24 @@ impl<'a> Typed<'a> { } } +impl<'a> PartiallyNormalized<'a> { + pub(crate) fn normalize(self) -> Normalized<'a> { + Normalized( + self.0.normalize_to_expr(), + self.1, + self.2, + ) + } + pub(crate) fn shift(&self, delta: isize, var: &V<Label>) -> Self { + let mut e = self.0.clone(); + e.shift(delta, var); + PartiallyNormalized( + e, + self.1.as_ref().map(|x| x.shift(delta, var)), + self.2, + ) + } +} fn shift_mut<N, E>(delta: isize, var: &V<Label>, in_expr: &mut SubExpr<N, E>) { let new_expr = shift(delta, var, &in_expr); @@ -250,7 +280,7 @@ impl EnvItem { } #[derive(Debug, Clone)] -struct NormalizationContext(Rc<Context<Label, EnvItem>>); +pub(crate) struct NormalizationContext(Rc<Context<Label, EnvItem>>); impl NormalizationContext { fn new() -> Self { @@ -312,7 +342,7 @@ impl NormalizationContext { /// subexpression has its own context, but in practice some contexts can be shared when sensible, to /// avoid unnecessary allocations. #[derive(Debug, Clone)] -enum WHNF { +pub(crate) enum WHNF { /// Closures Lam(Label, Now, (NormalizationContext, InputSubExpr)), AppliedBuiltin(Builtin, Vec<WHNF>), @@ -599,7 +629,7 @@ impl WHNF { /// non-normalized value alongside a normalization context. /// The name is a pun on std::borrow::Cow. #[derive(Debug, Clone)] -enum Now { +pub(crate) enum Now { Normalized(Box<WHNF>), Unnormalized(NormalizationContext, InputSubExpr), } @@ -814,19 +844,6 @@ fn normalize_last_layer(expr: ExprF<WHNF, Label, X, X>) -> WHNF { } } -/// Reduce an expression to its normal form, performing beta reduction -/// -/// `normalize` does not type-check the expression. You may want to type-check -/// expressions before normalizing them since normalization can convert an -/// ill-typed expression into a well-typed expression. -/// -/// However, `normalize` will not fail if the expression is ill-typed and will -/// leave ill-typed sub-expressions unevaluated. -/// -fn normalize(ctx: NormalizationContext, e: InputSubExpr) -> OutputSubExpr { - normalize_whnf(ctx, e).normalize_to_expr() -} - #[cfg(test)] mod spec_tests { #![rustfmt::skip] |