only 1 conflict
This commit is contained in:
parent
74ab37ec6b
commit
f596c5c64d
1 changed files with 4 additions and 8 deletions
|
@ -304,7 +304,7 @@ simple_expression:
|
|||
Variable(i, tl)
|
||||
}
|
||||
|
||||
/* Annotation de type
|
||||
/* Annotation de type
|
||||
* ( expr : type ) */
|
||||
| LPAREN e=located(expression) COLON t=located(ty) RPAREN {
|
||||
TypeAnnotation(e, t)
|
||||
|
@ -342,16 +342,12 @@ expr_list:
|
|||
| LPAREN el=separated_nonempty_list(COMMA, located(expression)) RPAREN {
|
||||
el
|
||||
}
|
||||
|
||||
|
||||
|
||||
mid_expression:
|
||||
|e=simple_expression{
|
||||
e
|
||||
}
|
||||
/* Parenthésage */
|
||||
| LPAREN e=expression RPAREN {
|
||||
e
|
||||
}
|
||||
|
||||
/* Field record */
|
||||
| e=located(mid_expression) DOT l=located(label_identifier) tl=option(type_list) {
|
||||
|
@ -452,12 +448,12 @@ expression:
|
|||
For(var, e1, e2, e3)
|
||||
}
|
||||
|
||||
/* Allocation
|
||||
/* Allocation
|
||||
* ref expr */
|
||||
| REF e=located(mid_expression) {
|
||||
Ref(e)
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/******************************** BASIC TYPES *********************************/
|
||||
|
|
Reference in a new issue