use crate::semantics::core::context::VarCtx; use crate::semantics::phase::typecheck::rc; use crate::semantics::phase::NormalizedExpr; use crate::semantics::{Value, ValueKind}; use crate::syntax; use crate::syntax::{Builtin, ExprKind, V}; /// Controls conversion from `Value` to `Expr` #[derive(Copy, Clone)] pub(crate) struct ToExprOptions { /// Whether to convert all variables to `_` pub(crate) alpha: bool, /// Whether to normalize before converting pub(crate) normalize: bool, } /// Converts a value back to the corresponding AST expression. pub(crate) fn value_to_expr( ctx: &VarCtx, val: &Value, opts: ToExprOptions, ) -> NormalizedExpr { if opts.normalize { val.normalize_whnf(); } let kind = val.as_kind(); let kind = kind.map_ref_with_special_handling_of_binders( |v| value_to_expr(ctx, v, opts), |binder, v| value_to_expr(&ctx.insert(binder), v, opts), ); match kind { ValueKind::Var(v) => { let b = v.binder(); let (idx, name) = if opts.alpha { (ctx.lookup(&b), "_".into()) } else { (ctx.lookup_by_name(&b), b.name().clone()) }; match idx { Some(idx) => rc(ExprKind::Var(V(name, idx))), None => panic!( "internal error: binder {:?} not found in environment", b ), } } ValueKind::Lam(x, t, e) => { rc(ExprKind::Lam(x.to_label_maybe_alpha(opts.alpha), t, e)) } ValueKind::AppliedBuiltin(b, args) => args .into_iter() .fold(rc(ExprKind::Builtin(b)), |acc, v| rc(ExprKind::App(acc, v))), ValueKind::Pi(x, t, e) => { rc(ExprKind::Pi(x.to_label_maybe_alpha(opts.alpha), t, e)) } ValueKind::Const(c) => rc(ExprKind::Const(c)), ValueKind::BoolLit(b) => rc(ExprKind::BoolLit(b)), ValueKind::NaturalLit(n) => rc(ExprKind::NaturalLit(n)), ValueKind::IntegerLit(n) => rc(ExprKind::IntegerLit(n)), ValueKind::DoubleLit(n) => rc(ExprKind::DoubleLit(n)), ValueKind::EmptyOptionalLit(n) => rc(ExprKind::App( rc(ExprKind::Builtin(Builtin::OptionalNone)), n, )), ValueKind::NEOptionalLit(n) => rc(ExprKind::SomeLit(n)), ValueKind::EmptyListLit(n) => rc(ExprKind::EmptyListLit(rc( ExprKind::App(rc(ExprKind::Builtin(Builtin::List)), n), ))), ValueKind::NEListLit(elts) => rc(ExprKind::NEListLit(elts)), ValueKind::RecordLit(kvs) => { rc(ExprKind::RecordLit(kvs.into_iter().collect())) } ValueKind::RecordType(kts) => { rc(ExprKind::RecordType(kts.into_iter().collect())) } ValueKind::UnionType(kts) => { rc(ExprKind::UnionType(kts.into_iter().collect())) } ValueKind::UnionConstructor(l, kts) => rc(ExprKind::Field( rc(ExprKind::UnionType(kts.into_iter().collect())), l, )), ValueKind::UnionLit(l, v, kts) => rc(ExprKind::App( rc(ExprKind::Field( rc(ExprKind::UnionType(kts.into_iter().collect())), l, )), v, )), ValueKind::TextLit(elts) => { rc(ExprKind::TextLit(elts.into_iter().collect())) } ValueKind::Equivalence(x, y) => { rc(ExprKind::BinOp(syntax::BinOp::Equivalence, x, y)) } ValueKind::PartialExpr(e) => rc(e), } }