blob: 558a5ff0913428bbfe2732eac716f09318c2a203 (
plain)
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
|
local files = require 'files'
local guide = require 'parser.guide'
local vm = require 'vm'
local lang = require 'language'
local await = require 'await'
---@async
return function (uri, callback)
local state = files.getState(uri)
if not state then
return
end
---@async
guide.eachSourceType(state.ast, 'call', function (source)
local currentFunc = guide.getParentFunction(source)
if currentFunc and vm.isAsync(currentFunc, false) then
return
end
await.delay()
if vm.isAsyncCall(source) then
callback {
start = source.node.start,
finish = source.node.finish,
message = lang.script('DIAG_AWAIT_IN_SYNC'),
}
return
end
end)
end
|