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

14 lines
214 B
Lua
Raw Normal View History

local a = { 1, 2, 3, 4, 5 }
2022-11-14 00:10:02 +08:00
-- ^ TSNumber ^ TSPunctBracket
-- ^ TSVariable
local _ = next(a)
2022-11-14 00:10:02 +08:00
-- ^ TSFuncBuiltin
-- ^ TSKeyword
_ = next(a)
2022-11-14 00:10:02 +08:00
-- ^ TSFuncBuiltin
next(a)
2022-11-14 00:10:02 +08:00
-- ^ TSFuncBuiltin