diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-11-14 16:49:27 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-11-14 16:49:27 +0800 |
commit | 8c1669c85594e245eadfd1dbf1e537349640f2fb (patch) | |
tree | 9bacc4f2b1a57e71a21596deecdf58a355676026 /script/core | |
parent | ee590a4cd1bc972ffe19e232b176aa1ffaba2d47 (diff) | |
download | lua-language-server-8c1669c85594e245eadfd1dbf1e537349640f2fb.zip |
fix type infer in overload
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/completion/completion.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/core/completion/completion.lua b/script/core/completion/completion.lua index 4462bf64..b7d4650c 100644 --- a/script/core/completion/completion.lua +++ b/script/core/completion/completion.lua @@ -1659,7 +1659,7 @@ local function tryCallArg(state, position, results) return end ---@diagnostic disable-next-line: missing-fields - local node = vm.compileCallArg({ type = 'dummyarg' }, call, argIndex) + local node = vm.compileCallArg({ type = 'dummyarg', uri = state.uri }, call, argIndex) if not node then return end |