fix(frontends/lean/decl_cmds): allow binders but no type in definitions
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
c427c5bdc9
commit
5b6589709c
1 changed files with 6 additions and 2 deletions
|
@ -236,8 +236,12 @@ environment definition_cmd_core(parser & p, bool is_theorem, bool is_opaque) {
|
||||||
{
|
{
|
||||||
parser::param_universe_scope scope2(p);
|
parser::param_universe_scope scope2(p);
|
||||||
lenv = p.parse_binders(ps);
|
lenv = p.parse_binders(ps);
|
||||||
p.check_token_next(g_colon, "invalid declaration, ':' expected");
|
if (p.curr_is_token(g_colon)) {
|
||||||
type = p.parse_scoped_expr(ps, *lenv);
|
p.next();
|
||||||
|
type = p.parse_scoped_expr(ps, *lenv);
|
||||||
|
} else {
|
||||||
|
type = p.save_pos(mk_expr_placeholder(), p.pos());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
p.check_token_next(g_assign, "invalid declaration, ':=' expected");
|
p.check_token_next(g_assign, "invalid declaration, ':=' expected");
|
||||||
value = p.parse_scoped_expr(ps, *lenv);
|
value = p.parse_scoped_expr(ps, *lenv);
|
||||||
|
|
Loading…
Reference in a new issue