mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
13 lines
224 B
Lua
13 lines
224 B
Lua
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
|