From 521feda953a686ad876186366391340f945ca65b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= Date: Mon, 4 Nov 2019 18:22:51 +0800 Subject: =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AF=8A=E6=96=AD=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/core/diagnostics/undefined-global.lua | 37 ++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) (limited to 'server-beta/src/core/diagnostics/undefined-global.lua') diff --git a/server-beta/src/core/diagnostics/undefined-global.lua b/server-beta/src/core/diagnostics/undefined-global.lua index b3d19c21..db7af133 100644 --- a/server-beta/src/core/diagnostics/undefined-global.lua +++ b/server-beta/src/core/diagnostics/undefined-global.lua @@ -1,3 +1,36 @@ -return function () - +local files = require 'files' +local guide = require 'parser.guide' +local searcher = require 'searcher' +local define = require 'proto.define' +local lang = require 'language' + +return function (uri, callback) + local ast = files.getAst(uri) + if not ast then + return + end + + local hasSet = {} + searcher.eachGlobal(ast.ast, function (info) + local key = info.key + if hasSet[key] ~= nil then + return + end + hasSet[key] = false + searcher.eachRef(info.source, function (info) + if info.mode == 'set' then + hasSet[key] = true + end + end) + end) + searcher.eachGlobal(ast.ast, function (info) + local source = info.source + if info.mode == 'get' and not hasSet[info.key] then + callback { + start = source.start, + finish = source.finish, + message = lang.script('DIAG_UNDEF_GLOBAL', info.key), + } + end + end) end -- cgit v1.2.3