only 1 conflict

This commit is contained in:
Mylloon 2023-10-24 22:56:19 +02:00
parent 74ab37ec6b
commit f596c5c64d
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -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 *********************************/