Open anton-trunov opened 7 months ago
We need an expression with a bunch of operators to make sure AST are correct. E.g. something like 1 | 2 ^ 3 & 5 should be parsed as 1 | (2 ^ (3 & 5)).
1 | 2 ^ 3 & 5
1 | (2 ^ (3 & 5))
We need an expression with a bunch of operators to make sure AST are correct. E.g. something like
1 | 2 ^ 3 & 5
should be parsed as1 | (2 ^ (3 & 5))
.