chore(frontends/lean/builtin_cmds): handle FixedNoParam in the front-end
This commit is contained in:
parent
fcf532ea67
commit
1fc7bbceb2
1 changed files with 4 additions and 3 deletions
|
@ -716,6 +716,7 @@ static environment congr_cmd_core(parser & p, congr_kind kind) {
|
|||
if (!first) out << ", "; else first = false;
|
||||
switch (k) {
|
||||
case congr_arg_kind::Fixed: out << "fixed"; break;
|
||||
case congr_arg_kind::FixedNoParam: out << "fixed-noparm"; break;
|
||||
case congr_arg_kind::Eq: out << "eq"; break;
|
||||
case congr_arg_kind::Cast: out << "cast"; break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue