mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
14 lines
214 B
Lua
14 lines
214 B
Lua
|
|
local a = { 1, 2, 3, 4, 5 }
|
||
|
|
-- ^ TSNumber ^ TSPunctBracket
|
||
|
|
-- ^ TSVariable
|
||
|
|
|
||
|
|
local _ = next(a)
|
||
|
|
-- ^ TSFuncBuiltin
|
||
|
|
-- ^ TSKeyword
|
||
|
|
|
||
|
|
_ = next(a)
|
||
|
|
-- ^ TSFuncBuiltin
|
||
|
|
|
||
|
|
next(a)
|
||
|
|
-- ^ TSFuncBuiltin
|