tree-sitter-tiger/test
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
..
corpus Fix assignment priority 2022-06-04 21:45:40 +02:00
highlight Add meta-variable keywords high-lighting 2022-06-04 21:45:40 +02:00
tags Add function tags 2022-06-04 10:43:35 +02:00