1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 18:00:03 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/lua/test.lua

14 lines
224 B
Lua
Raw Normal View History

local a = { 1, 2, 3, 4, 5 }
-- ^ number ^ punctuation.bracket
-- ^ variable
local _ = next(a)
-- ^ function.builtin
-- ^ keyword
_ = next(a)
-- ^ function.builtin
next(a)
-- ^ function.builtin