blob: c21ca99378cab1f8e1f0dfe836d1009ee6fa750b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
local files = require 'files'
local define = require 'proto.define'
local lang = require 'language'
local guide = require 'parser.guide'
local await = require 'await'
local types = {
'local',
'setlocal',
'setglobal',
'setfield',
'setindex' ,
}
---@async
return function (uri, callback, code)
local ast = files.getState(uri)
if not ast then
return
end
local last
local function checkSet(source)
if source.value then
last = source
else
if not last then
return
end
if last.start <= source.start
and last.value.start >= source.finish then
callback {
start = source.start,
finish = source.finish,
message = lang.script('DIAG_UNBALANCED_ASSIGNMENTS')
}
else
last = nil
end
end
end
---@async
guide.eachSourceTypes(ast.ast, types, function (source)
await.delay()
checkSet(source)
end)
end
|