diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-24 05:54:47 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-24 05:54:47 +0800 |
commit | 4876ff34f6c7ab8c234577ebf5f8a96d867b4f31 (patch) | |
tree | caa0b030c07b32df590c3ea6d8c32052041f04ce /script/vm | |
parent | f8551a93927ab782ddd58397f86580dc6301a4be (diff) | |
download | lua-language-server-4876ff34f6c7ab8c234577ebf5f8a96d867b4f31.zip |
check nils
Diffstat (limited to 'script/vm')
-rw-r--r-- | script/vm/compiler.lua | 3 | ||||
-rw-r--r-- | script/vm/doc.lua | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/script/vm/compiler.lua b/script/vm/compiler.lua index d764c91d..32cc7128 100644 --- a/script/vm/compiler.lua +++ b/script/vm/compiler.lua @@ -980,7 +980,7 @@ local compilerSwitch = util.switch() for _, doc in ipairs(src.bindDocs) do if doc.type == 'doc.type' then vm.setNode(src, vm.compileNode(doc), true) - return + return vm.getNode(src) end end end @@ -1773,6 +1773,7 @@ local function compileByGlobal(source) vm.setNode(source, globalNode, true) return end + ---@type vm.node globalNode = vm.createNode(global) vm.setNode(root._globalBase[name], globalNode, true) vm.setNode(source, globalNode, true) diff --git a/script/vm/doc.lua b/script/vm/doc.lua index 5a92a103..055b3d49 100644 --- a/script/vm/doc.lua +++ b/script/vm/doc.lua @@ -27,6 +27,9 @@ function vm.isMetaFile(uri) return false end local cache = files.getCache(uri) + if not cache then + return false + end if cache.isMeta ~= nil then return cache.isMeta end @@ -332,6 +335,9 @@ function vm.isDiagDisabledAt(uri, position, name) return false end local cache = files.getCache(uri) + if not cache then + return false + end if not cache.diagnosticRanges then cache.diagnosticRanges = {} for _, doc in ipairs(status.ast.docs) do |