diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-02-02 22:22:12 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-02-02 22:22:12 +0800 |
commit | 532d507aa04c2f220ae63d118898a39ab18d13c9 (patch) | |
tree | 1ee5fe73e3f50d9760d7440b5ec8b64abb596cff /script | |
parent | c33747ecdb348a77294e717a88a8b75d0a06ba33 (diff) | |
download | lua-language-server-532d507aa04c2f220ae63d118898a39ab18d13c9.zip |
fix errors
Diffstat (limited to 'script')
-rw-r--r-- | script/service/service.lua | 1 | ||||
-rw-r--r-- | script/vm/getGlobals.lua | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/script/service/service.lua b/script/service/service.lua index 450440a6..8f76a294 100644 --- a/script/service/service.lua +++ b/script/service/service.lua @@ -11,6 +11,7 @@ local ws = require 'workspace' local m = {} m.type = 'service' +m.idleClock = 0.0 local function countMemory() local mems = {} diff --git a/script/vm/getGlobals.lua b/script/vm/getGlobals.lua index 842db4c3..0c502ecd 100644 --- a/script/vm/getGlobals.lua +++ b/script/vm/getGlobals.lua @@ -8,6 +8,9 @@ local config = require 'config' local ws = require 'workspace' local function getGlobalsOfFile(uri) + if not files.exists(uri) then + return {} + end local cache = files.getCache(uri) if cache.globals then return cache.globals @@ -47,6 +50,9 @@ local function getGlobalsOfFile(uri) end local function getGlobalSetsOfFile(uri) + if not files.exists(uri) then + return {} + end local cache = files.getCache(uri) if cache.globalSets then return cache.globalSets |