1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
local parser = require 'parser'
local core = require 'core'
local buildVM = require 'vm'
rawset(_G, 'TEST', true)
function TEST(script)
return function (expect)
local pos = script:find('@', 1, true)
local new_script = script:gsub('@', '')
local ast = parser:ast(new_script)
local vm = buildVM(ast)
assert(vm)
local hovers = core.signature(vm, pos)
if hovers then
assert(expect)
local hover = hovers[#hovers]
local label = hover.label:gsub('^[\r\n]*(.-)[\r\n]*$', '%1'):gsub('\r\n', '\n')
expect.label = expect.label:gsub('^[\r\n]*(.-)[\r\n]*$', '%1'):gsub('\r\n', '\n')
local arg = hover.argLabel
assert(expect.label == label)
assert(expect.arg[1] == arg[1])
assert(expect.arg[2] == arg[2])
else
assert(expect == nil)
end
end
end
TEST [[
local function x(a, b)
end
x(@
]]
{
label = "function x(a: any, b: any)",
arg = {12, 17},
}
TEST [[
local function x(a, b)
end
x(@)
]]
{
label = "function x(a: any, b: any)",
arg = {12, 17},
}
TEST [[
local function x(a, b)
end
x(xxx@)
]]
{
label = "function x(a: any, b: any)",
arg = {12, 17},
}
TEST [[
local function x(a, b)
end
x(xxx, @)
]]
{
label = "function x(a: any, b: any)",
arg = {20, 25},
}
TEST [[
function mt:f(a)
end
mt:f(@
]]
{
label = 'function mt:f(a: any)',
arg = {15, 20},
}
TEST [[
(''):sub(@
]]
{
label = [[
function *string:sub(i: integer [, j: integer(-1)])
-> string
]],
arg = {22, 31},
}
TEST [[
(''):sub(1)@
]]
(nil)
TEST [[
local function f(a, b, c)
end
f(1, 'string@')
]]
(nil)
TEST [[
pcall(function () @ end)
]]
(nil)
TEST [[
table.unpack {@}
]]
(nil)
|