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
|
local files = require 'files'
local guide = require 'parser.guide'
local matchKey = require 'core.matchkey'
local define = require 'proto.define'
local await = require 'await'
local function buildSource(uri, source, key, results)
if source.dummy then
return
end
if source.type == 'local'
or source.type == 'setlocal'
or source.type == 'setglobal' then
local name = source[1]
if matchKey(key, name) then
results[#results+1] = {
name = name,
kind = define.SymbolKind.Variable,
uri = uri,
range = { source.start, source.finish },
}
end
elseif source.type == 'setfield'
or source.type == 'tablefield' then
local field = source.field
local name = field and field[1]
if name and matchKey(key, name) then
results[#results+1] = {
name = name,
kind = define.SymbolKind.Field,
uri = uri,
range = { field.start, field.finish },
}
end
elseif source.type == 'setmethod' then
local method = source.method
local name = method and method[1]
if name and matchKey(key, name) then
results[#results+1] = {
name = name,
kind = define.SymbolKind.Method,
uri = uri,
range = { method.start, method.finish },
}
end
end
end
local function searchFile(uri, key, results)
local ast = files.getState(uri)
if not ast then
return
end
guide.eachSource(ast.ast, function (source)
buildSource(uri, source, key, results)
end)
end
---@async
return function (key)
local results = {}
for uri in files.eachFile() do
searchFile(uri, key, results)
if #results > 1000 then
break
end
await.delay()
end
return results
end
|