summaryrefslogtreecommitdiff
path: root/script/vm
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2024-05-11 15:39:52 +0800
committer最萌小汐 <sumneko@hotmail.com>2024-05-11 15:50:58 +0800
commiteda74fd47141b3dc3273031dc558d8635065ecd9 (patch)
tree8fbbadeef30223971e98713c8cd1c0ec5171aaff /script/vm
parent6347eea96838de9d643e2a4cd4495bbe0026f185 (diff)
downloadlua-language-server-eda74fd47141b3dc3273031dc558d8635065ecd9.zip
暂存-转到实现
Diffstat (limited to 'script/vm')
-rw-r--r--script/vm/function.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/vm/function.lua b/script/vm/function.lua
index c6df6349..dde8ecb2 100644
--- a/script/vm/function.lua
+++ b/script/vm/function.lua
@@ -337,7 +337,7 @@ function vm.getMatchedFunctions(func, args, mark)
local funcs = {}
local node = vm.compileNode(func)
for n in node:eachObject() do
- if (n.type == 'function' and not vm.isVarargFunctionWithOverloads(n))
+ if n.type == 'function'
or n.type == 'doc.type.function' then
funcs[#funcs+1] = n
end