tree-sitter-tiger/test/corpus
Bruno BELANYI 21172e21e7 Fix assignment priority
The assignment operator is lower priority than any other binary
operator.

Otherwise the following:

```tiger
a := b | c
```

Would be parsed as:

```tiger
(a := b) | c
```

Instead of the expected:

```tiger
a := (b | c)
```
2022-06-04 21:45:40 +02:00
..
arithmetic.txt Add tests for sequence expressions 2022-06-02 17:07:30 +02:00
comments.txt Add ':=' to 'operator' 2022-06-03 11:42:57 +02:00
control_flow.txt Add ':=' to 'operator' 2022-06-03 11:42:57 +02:00
declarations.txt Add ':=' to 'operator' 2022-06-03 11:42:57 +02:00
expressions.txt Add ':=' to 'operator' 2022-06-03 11:42:57 +02:00
identifiers.txt Add lvalue expressions 2022-06-02 17:07:30 +02:00
let_expressions.txt Add let expressions 2022-06-02 17:07:30 +02:00
literals.txt Use explicit 'nil_literal' rule 2022-06-02 17:07:30 +02:00
lvalues.txt Add 'field_identifier' alias 2022-06-03 10:31:30 +02:00
meta-variables.txt Add meta-variables 2022-06-04 21:45:33 +02:00
regressions.txt Fix assignment priority 2022-06-04 21:45:40 +02:00