summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-01-31 01:37:10 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-01-31 01:37:10 +0800
commitffeed6eacdb8ad69c7b5f2294c0c12b402de89d5 (patch)
tree4986b21179e4f3a1e28a4e5fd4b398bf9facefce /script
parent4758a1ed42e23d4d8e121f0d5cb5bec0801fa583 (diff)
downloadlua-language-server-ffeed6eacdb8ad69c7b5f2294c0c12b402de89d5.zip
safe pairs
Diffstat (limited to 'script')
-rw-r--r--script/vm/getGlobals.lua20
1 files changed, 13 insertions, 7 deletions
diff --git a/script/vm/getGlobals.lua b/script/vm/getGlobals.lua
index e1fd0e7a..842db4c3 100644
--- a/script/vm/getGlobals.lua
+++ b/script/vm/getGlobals.lua
@@ -194,14 +194,20 @@ local function checkNeedUpdate()
local getGlobalCache = ws.getCache 'getGlobals'
local getGlobalSetsCache = ws.getCache 'getGlobalSets'
local needUpdateGlobals = ws.getCache 'needUpdateGlobals'
+ local uris = {}
for uri in pairs(needUpdateGlobals) do
- needUpdateGlobals[uri] = nil
- if files.exists(uri) then
- for name in pairs(getGlobalsOfFile(uri)) do
- getGlobalCache[name] = nil
- end
- for name in pairs(getGlobalSetsOfFile(uri)) do
- getGlobalSetsCache[name] = nil
+ uris[#uris+1] = uri
+ end
+ for _, uri in ipairs(uris) do
+ if needUpdateGlobals[uri] then
+ needUpdateGlobals[uri] = nil
+ if files.exists(uri) then
+ for name in pairs(getGlobalsOfFile(uri)) do
+ getGlobalCache[name] = nil
+ end
+ for name in pairs(getGlobalSetsOfFile(uri)) do
+ getGlobalSetsCache[name] = nil
+ end
end
end
end