diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-08-01 15:42:23 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-08-01 15:42:23 +0800 |
commit | a2631611a5ebf2719577eab634b91ca5dabed148 (patch) | |
tree | 1d7515f31013256af13e80eee6a345e31c56e289 | |
parent | f61b07064b4bac22778d8c5975aef881a1706ce1 (diff) | |
download | lua-language-server-a2631611a5ebf2719577eab634b91ca5dabed148.zip |
wrong commits
-rw-r--r-- | script/vm/function.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/vm/function.lua b/script/vm/function.lua index 148211be..f64b2262 100644 --- a/script/vm/function.lua +++ b/script/vm/function.lua @@ -201,7 +201,7 @@ end ---@return parser.object[] function vm.getMatchedFunctions(func, args, mark) local funcs = {} - local node = vm.getNode(func) or vm.compileNode(func) + local node = vm.compileNode(func) for n in node:eachObject() do if n.type == 'function' or n.type == 'doc.type.function' then |