diff options
author | d-enk <denis.l@irecommend.ru> | 2023-11-23 12:55:42 +0300 |
---|---|---|
committer | d-enk <denis.l@irecommend.ru> | 2023-11-23 12:58:01 +0300 |
commit | 3511bfd1b986bfce7f9993ddf3e4a9e3818b83ec (patch) | |
tree | 4aa2da1c1f69699040217cac8648bc0f8c5042e1 | |
parent | 50dfc81e075be5fe2cdf7b2b94007dd5ed2edefa (diff) | |
download | lua-language-server-3511bfd1b986bfce7f9993ddf3e4a9e3818b83ec.zip |
fix: `doc.type.function` resolve only existing arg.extends
-rw-r--r-- | script/vm/sign.lua | 16 |
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 |