diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-10-23 16:56:01 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-10-23 16:56:01 +0800 |
commit | 71a394c07bf51a2c479e43fd9421c276f7ec4450 (patch) | |
tree | f4cc650bbb48c26b35b9aca0a9ed6768a1adfba3 /script-beta/core | |
parent | 5619f5aec549eb931c1c7727702afc89e6672ad9 (diff) | |
download | lua-language-server-71a394c07bf51a2c479e43fd9421c276f7ec4450.zip |
class 只能扩展 class,单独诊断
Diffstat (limited to 'script-beta/core')
-rw-r--r-- | script-beta/core/diagnostics/undefined-doc-class.lua | 46 | ||||
-rw-r--r-- | script-beta/core/diagnostics/undefined-doc-name.lua | 6 |
2 files changed, 51 insertions, 1 deletions
diff --git a/script-beta/core/diagnostics/undefined-doc-class.lua b/script-beta/core/diagnostics/undefined-doc-class.lua new file mode 100644 index 00000000..bbfdceec --- /dev/null +++ b/script-beta/core/diagnostics/undefined-doc-class.lua @@ -0,0 +1,46 @@ +local files = require 'files' +local guide = require 'parser.guide' +local lang = require 'language' +local define = require 'proto.define' +local vm = require 'vm' + +return function (uri, callback) + local state = files.getAst(uri) + if not state then + return + end + + if not state.ast.docs then + return + end + + local cache = {} + for _, doc in ipairs(state.ast.docs) do + if doc.type == 'doc.class' then + local ext = doc.extends + if not ext then + goto CONTINUE + end + local name = ext[1] + local docs = vm.getDocTypes(name) + if cache[name] == nil then + cache[name] = false + for _, otherDoc in ipairs(docs) do + if otherDoc.type == 'doc.class.name' then + cache[name] = true + break + end + end + end + if not cache[name] then + callback { + start = ext.start, + finish = ext.finish, + related = cache, + message = lang.script('DIAG_UNDEFINED_DOC_CLASS', name) + } + end + end + ::CONTINUE:: + end +end diff --git a/script-beta/core/diagnostics/undefined-doc-name.lua b/script-beta/core/diagnostics/undefined-doc-name.lua index bf885f6f..ba5e0a69 100644 --- a/script-beta/core/diagnostics/undefined-doc-name.lua +++ b/script-beta/core/diagnostics/undefined-doc-name.lua @@ -16,7 +16,11 @@ return function (uri, callback) local cache = {} guide.eachSource(state.ast.docs, function (source) - if source.type:sub(-5) ~= '.name' then + if source.type ~= 'doc.extends.name' + and source.type ~= 'doc.type.name' then + return + end + if source.parent.type == 'doc.class' then return end local name = source[1] |