1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 10:15:41 +08:00
2022-11-14 00:10:02 +08:00

14 lines
214 B
Lua
Vendored

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