tree-sitter-tiger/src
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
..
tree_sitter Bootstrap tree-sitter parser architecture 2022-06-01 16:39:18 +02:00
grammar.json Fix assignment priority 2022-06-04 21:45:40 +02:00
node-types.json Add meta-variables 2022-06-04 21:45:33 +02:00
parser.c Fix assignment priority 2022-06-04 21:45:40 +02:00
scanner.c Fix whitespace skipping in scanner 2022-06-02 22:27:13 +02:00