fix comments
This commit is contained in:
parent
828a780f9c
commit
ee9eef4b43
1 changed files with 4 additions and 4 deletions
|
@ -54,10 +54,10 @@ args_ident:
|
||||||
/* a, ... */
|
/* a, ... */
|
||||||
| a = arg_ident ; Lcomma ; s = args_ident { a @ s }
|
| a = arg_ident ; Lcomma ; s = args_ident { a @ s }
|
||||||
|
|
||||||
/* ..., c) */
|
/* c) */
|
||||||
| a = arg_ident ; Lparfin { a }
|
| a = arg_ident ; Lparfin { a }
|
||||||
|
|
||||||
/* ..., c) */
|
/* ) */
|
||||||
| Lparfin { [] }
|
| Lparfin { [] }
|
||||||
|
|
||||||
arg_ident:
|
arg_ident:
|
||||||
|
@ -107,10 +107,10 @@ args_expr:
|
||||||
/* a, ... */
|
/* a, ... */
|
||||||
| a = expr ; Lcomma ; s = args_expr { a :: s }
|
| a = expr ; Lcomma ; s = args_expr { a :: s }
|
||||||
|
|
||||||
/* ..., c) */
|
/* c) */
|
||||||
| a = expr ; Lparfin { [ a ] }
|
| a = expr ; Lparfin { [ a ] }
|
||||||
|
|
||||||
/* ..., c) */
|
/* ) */
|
||||||
| Lparfin { [] }
|
| Lparfin { [] }
|
||||||
|
|
||||||
expr:
|
expr:
|
||||||
|
|
Reference in a new issue