LuaLS / LuaLS/lua-language-server
Warning is only generated for the first vararg parameter
還沒有人認領這個 Issue。
- 主要語言
- Lua
- 星號
- 4.4k
- 分支
- 442
- PR 合併指標
- 30 天內沒有已合併 PR
描述
### How are you using the lua-language-server?
Visual Studio Code Extension (sumneko.lua)
### Which OS are you using?
Windows
### What is the issue affecting?
Type Checking
### Expected Behaviour
Warning is generated for each argument with mismatched type for `---@vararg type` and '---@param ... type' annotations.
### Actual Behaviour
Warning generated only for the first passed argument.
### Reproduction steps
1. Paste following lua code into VSCode
```
---@param ... number
function Test(...) end
Test(1) -- OK, no warning
Test("1") -- OK, warning in place
Test(1, 2, 3) -- OK, no warnings
Test("1", "2", "3") -- There is only warning for "1" but no warning for "2" and "3". I.e. warning is only generated for the first argument
Test(1, "2", "3") -- still no warnings for "2" and "3".
```
### Additional Notes
I am observing the same behavior for legacy `---@varargs`
### Log File
_No response_
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
在 Visual Studio Code 擴充功能中重現這些範例,比較一般的 `---@param ... number` 與舊版的 `---@varargs`。追蹤可變參數呼叫的型別檢查路徑,並驗證每個不相符的引數都會產生警告,包括兩種註解形式中的後續引數。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- lua
- 領域
- devtools
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100