summaryrefslogtreecommitdiff
path: root/script/core/diagnostics/code-after-break.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/core/diagnostics/code-after-break.lua')
-rw-r--r--script/core/diagnostics/code-after-break.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/script/core/diagnostics/code-after-break.lua b/script/core/diagnostics/code-after-break.lua
index 21f7e83a..963fd9ed 100644
--- a/script/core/diagnostics/code-after-break.lua
+++ b/script/core/diagnostics/code-after-break.lua
@@ -2,7 +2,9 @@ local files = require 'files'
local guide = require 'parser.guide'
local lang = require 'language'
local define = require 'proto.define'
+local await = require 'await'
+---@async
return function (uri, callback)
local state = files.getState(uri)
if not state then
@@ -10,12 +12,14 @@ return function (uri, callback)
end
local mark = {}
+ ---@async
guide.eachSourceType(state.ast, 'break', function (source)
local list = source.parent
if mark[list] then
return
end
mark[list] = true
+ await.delay()
for i = #list, 1, -1 do
local src = list[i]
if src == source then