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 = arg_ident ; Lcomma ; s = args_ident { a @ s }
|
||||
|
||||
/* ..., c) */
|
||||
/* c) */
|
||||
| a = arg_ident ; Lparfin { a }
|
||||
|
||||
/* ..., c) */
|
||||
/* ) */
|
||||
| Lparfin { [] }
|
||||
|
||||
arg_ident:
|
||||
|
@ -107,10 +107,10 @@ args_expr:
|
|||
/* a, ... */
|
||||
| a = expr ; Lcomma ; s = args_expr { a :: s }
|
||||
|
||||
/* ..., c) */
|
||||
/* c) */
|
||||
| a = expr ; Lparfin { [ a ] }
|
||||
|
||||
/* ..., c) */
|
||||
/* ) */
|
||||
| Lparfin { [] }
|
||||
|
||||
expr:
|
||||
|
|
Reference in a new issue