-
-
Notifications
You must be signed in to change notification settings - Fork 384
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
How are you using the lua-language-server?
NeoVim
Which OS are you using?
Linux
What is the issue affecting?
Annotations
Expected Behaviour
No diagnostics warning
Actual Behaviour
Server reports a warning
Reproduction steps
Create a file with:
---@param foo table
local function bar(foo)
print(foo)
end
---@param foo table
local function baz(
foo
)
print(foo)
end
bar({})
baz({})
lua-language-server 3.5.2 reports a "Undefined param foo
" warning on baz
. On bar
no warning is reported.
This is mostly a problem with many parameters where tools like stylua
start to put all parameters on a newline.
Additional Notes
No response
Log File
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working