aboutsummaryrefslogtreecommitdiffstats
path: root/tests/query/highlights/lua/test.lua
blob: 22da225655e9ebf885a5c7badde19bb0f4d752b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
local a = { 1, 2, 3, 4, 5 }
--          ^ TSNumber    ^ TSPunctBracket
--    ^ TSVariable

local _ = next(a)
--          ^ TSFuncBuiltin
-- ^ TSKeyword

_ = next(a)
--   ^ TSFuncBuiltin

next(a)
-- ^ TSFuncBuiltin