tree-sitter-bp/test/highlight/operators.bp
Bruno BELANYI af877f1cc4 Account for '-' as an operator
For syntax purposes it's part of the number, but it looks better when
highlighted as an operator.
2024-04-08 20:58:17 +01:00

9 lines
101 B
Text

foo = bar
// ^ operator
foo += 1
// ^ operator
foo = -1 + 2
// ^ operator
// ^ operator