summaryrefslogtreecommitdiff
path: root/script/core/diagnostics/need-check-nil.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/core/diagnostics/need-check-nil.lua')
-rw-r--r--script/core/diagnostics/need-check-nil.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/script/core/diagnostics/need-check-nil.lua b/script/core/diagnostics/need-check-nil.lua
index 867d0135..9c86939a 100644
--- a/script/core/diagnostics/need-check-nil.lua
+++ b/script/core/diagnostics/need-check-nil.lua
@@ -2,14 +2,18 @@ local files = require 'files'
local guide = require 'parser.guide'
local vm = require 'vm'
local lang = require 'language'
+local await = require 'await'
+---@async
return function (uri, callback)
local state = files.getState(uri)
if not state then
return
end
+ ---@async
guide.eachSourceType(state.ast, 'getlocal', function (src)
+ await.delay()
local checkNil
local nxt = src.next
if nxt then