1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-26 14:30:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/lua/test.lua

14 lines
214 B
Lua
Raw Normal View History

local a = { 1, 2, 3, 4, 5 }
-- ^ TSNumber ^ TSPunctBracket
-- ^ TSVariable
local _ = next(a)
-- ^ TSFuncBuiltin
-- ^ TSKeyword
_ = next(a)
-- ^ TSFuncBuiltin
next(a)
-- ^ TSFuncBuiltin