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

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