mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 11:20:07 -04:00
Add more tests for assignments
This commit is contained in:
parent
a741b5dd0d
commit
d2fe87062d
1 changed files with 12 additions and 2 deletions
|
|
@ -1,11 +1,21 @@
|
||||||
my_variable =
|
my_variable =
|
||||||
1 + 2 - 3 *
|
1 + 2 - 3 *
|
||||||
4 / 5 %
|
4 / 5 %
|
||||||
6
|
6 + (
|
||||||
|
1 + 2 +
|
||||||
|
3
|
||||||
|
) +
|
||||||
|
7 + 8 +
|
||||||
|
9
|
||||||
|
|
||||||
function test()
|
function test()
|
||||||
my_variable =
|
my_variable =
|
||||||
1 + 2 - 3 *
|
1 + 2 - 3 *
|
||||||
4 / 5 %
|
4 / 5 %
|
||||||
6
|
6 + (
|
||||||
|
1 + 2 +
|
||||||
|
3
|
||||||
|
) +
|
||||||
|
7 + 8 +
|
||||||
|
9
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue