summaryrefslogtreecommitdiff
path: root/script/vm/sign.lua
diff options
context:
space:
mode:
Diffstat (limited to 'script/vm/sign.lua')
-rw-r--r--script/vm/sign.lua16
1 files changed, 9 insertions, 7 deletions
diff --git a/script/vm/sign.lua b/script/vm/sign.lua
index 3cd6bc5d..38cb2242 100644
--- a/script/vm/sign.lua
+++ b/script/vm/sign.lua
@@ -142,13 +142,15 @@ function mt:resolve(uri, args)
end
if object.type == 'doc.type.function' then
for i, arg in ipairs(object.args) do
- for n in node:eachObject() do
- if n.type == 'function'
- or n.type == 'doc.type.function' then
- ---@cast n parser.object
- local farg = n.args and n.args[i]
- if farg then
- resolve(arg.extends, vm.compileNode(farg))
+ if arg.extends then
+ for n in node:eachObject() do
+ if n.type == 'function'
+ or n.type == 'doc.type.function' then
+ ---@cast n parser.object
+ local farg = n.args and n.args[i]
+ if farg then
+ resolve(arg.extends, vm.compileNode(farg))
+ end
end
end
end