LuaLS / LuaLS/lua-language-server
[Feature request] Implicit casts for common conversions
還沒有人認領這個 Issue。
- 主要語言
- Lua
- 星號
- 4.4k
- 分支
- 442
- PR 合併指標
- 30 天內沒有已合併 PR
描述
I got some code for parsing command line flags/user inputs that commonly uses patterns like this
```
---@return string ...
local function strsplit(str, sep) end
local a, b, c = strsplit(userinput, ",")
b = tonumber(b) or 0 -- error: This variable is defined as type `string`. Cannot convert its type to `number`
```
The fix is to define b as `string|number` in the declaration, but it's a bit cumbersome, especially if I just want `b` as a number:
```
local a,
---@type number|string
b, c = strsplit(userinput, ",")
```
So it would be nice if common type conversion patterns like this could be recognized automatically and either allow the cast or infer the type as string|number from the beginning.
Edit: See [comment below](https://github.com/LuaLS/lua-language-server/issues/3027#issuecomment-2572687841), the implicit cast is already happening, this is really about type inference based on later assignments. Which may or may not be a good idea.
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先追蹤 issue 中描述的現有 implicit-cast 和 type-inference 行為,尤其要關注後續指派如何影響較早的變數宣告。定義預期的推論規則,並根據命令列解析範例進行驗證;完成的標準是對行為達成共識,並有測試涵蓋最終推論出的型別。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- lua
- 領域
- devtools
- Issue 類型
- 功能
- 難度
- 5/5
- 預估耗時
- 一週以上
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100