mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
28 lines
195 B
Python
28 lines
195 B
Python
|
|
a = [
|
||
|
|
1, 2, 3]
|
||
|
|
|
||
|
|
b = [
|
||
|
|
x + 1
|
||
|
|
for x in range(3)]
|
||
|
|
|
||
|
|
c = [[[
|
||
|
|
1
|
||
|
|
]]]
|
||
|
|
|
||
|
|
d = [[[
|
||
|
|
4]]]
|
||
|
|
|
||
|
|
e = [[
|
||
|
|
1], 2, 3]
|
||
|
|
|
||
|
|
def foo(x, y):
|
||
|
|
pass
|
||
|
|
|
||
|
|
foo(
|
||
|
|
a,
|
||
|
|
b)
|
||
|
|
|
||
|
|
if (a and
|
||
|
|
b):
|
||
|
|
pass
|