aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/lua/test.lua
blob: efb9a9994c03a18a36c44bf38eded430188898e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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