blob: 2f559697cd98ab71698194a573008f0dd49002bc (
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
|
local files = require 'files'
local guide = require 'parser.guide'
local lang = require 'language'
local vm = require "vm.vm"
return function (uri, callback)
local ast = files.getState(uri)
if not ast then
return
end
guide.eachSourceType(ast.ast, 'getglobal', function (source)
-- 单独验证自己是否在重载过的 _ENV 中有定义
if source.node.tag == '_ENV' then
return
end
local defs = vm.getDefs(source)
if #defs > 0 then
return
end
local key = source[1]
callback {
start = source.start,
finish = source.finish,
message = lang.script('DIAG_UNDEF_ENV_CHILD', key),
}
end)
end
|