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 guide = require 'parser.guide'
local lang = require 'language'
local define = require 'proto.define'
-- 检查空代码块
-- 但是排除忙等待(repeat/while)
return function (uri, callback)
local ast = files.getAst(uri)
if not ast then
return
end
guide.eachSourceType(ast.ast, 'if', function (source)
for _, block in ipairs(source) do
if #block > 0 then
return
end
end
callback {
start = source.start,
finish = source.finish,
tags = { define.DiagnosticTag.Unnecessary },
message = lang.script.DIAG_EMPTY_BLOCK,
}
end)
guide.eachSourceType(ast.ast, 'loop', function (source)
if #source > 0 then
return
end
callback {
start = source.start,
finish = source.finish,
tags = { define.DiagnosticTag.Unnecessary },
message = lang.script.DIAG_EMPTY_BLOCK,
}
end)
guide.eachSourceType(ast.ast, 'in', function (source)
if #source > 0 then
return
end
callback {
start = source.start,
finish = source.finish,
tags = { define.DiagnosticTag.Unnecessary },
message = lang.script.DIAG_EMPTY_BLOCK,
}
end)
end
|