fix(frontends/lean/elaborator): let expr patterns
This commit is contained in:
parent
647d7a8501
commit
c325438453
1 changed files with 1 additions and 1 deletions
|
|
@ -2705,7 +2705,7 @@ static expr quote(expr const & e) {
|
|||
return mk_app(mk_constant({"expr", "pi"}), mk_expr_placeholder(), mk_expr_placeholder(),
|
||||
quote(binding_domain(e)), quote(binding_body(e)));
|
||||
case expr_kind::Let:
|
||||
return mk_app(mk_constant({"expr", "let"}), mk_expr_placeholder(), quote(let_type(e)),
|
||||
return mk_app(mk_constant({"expr", "elet"}), mk_expr_placeholder(), quote(let_type(e)),
|
||||
quote(let_value(e)), quote(let_body(e)));
|
||||
case expr_kind::Macro:
|
||||
if (is_antiquote(e))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue