LuaLS / LuaLS/lua-language-server
`assign-type-mismatch` warning when overloading a derived class
還沒有人認領這個 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?
Annotations, Type Checking, Diagnostics/Syntax Checking
### Expected Behaviour
No warning generated.
### Actual Behaviour
An `assign-type-mismatch` warning is thrown.
### Reproduction steps
```lua
---@class Parent
---@return Parent
local function newParent() local o = {}; return setmetatable(o, o) end
---@class Object : Parent
---@overload fun(s: string) -- Or disable the diagnostic on this line
local o = newParent() -- Invalid warning here
function o:__call() end
```
### Additional Notes
The overload workaround, mentioned in #1733 does not work in this use case. A function returns a type, from which a new class is created. When overloading this new class, an invalid warning is generated.
ℹ️ A workaround I've found is to make the class derive also from `table`:
```diff
- ---@class Parent
+ ---@class Parent : table
```
### Log File
_No response_
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
在 Visual Studio Code 擴充功能中重現 Lua 程式碼片段的警告,重點關注將 `@overload` 套用於函式回傳的類別時的 `assign-type-mismatch` 診斷。追蹤 `@class` 繼承和重載的處理,然後驗證重現不再發出無效警告,同時保留文件所述的 `table` workaround 行為。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- lua
- 領域
- devtools
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100