LuaLS / LuaLS/lua-language-server
Ipairs with generic
オープン
まだ誰も着手していません。
- 主要言語
- 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
Expected Behaviour
Should have got a correct type inference in a generic function.
Actual Behaviour
- could not specify a
V-related type forresultin the generic function ipairswill be inferred asunknown- returns of the generic function will be inferred as a strange type
Reproduction steps
---@class Test
---@field name string
---@type Test[]
local tests = {
{ name = "test1" },
{ name = "test2" },
{ name = "test3" },
}
--[[
CORRECT:
function group_by(rows: <V>[], key: string)
-> table<string, <V>[]>
]]
---@generic V
---@param rows V[]
---@param key string
---@return table<string, V[]>
local function group_by(rows, key)
--[[
---@type table<string, V[]>
GOT: Undefined type or alias `V`.
]]
local result = {}
-- WRONG: local v: unknown
for i, v in ipairs(rows) do
local k = v[key]
if not result[k] then
result[k] = {}
end
table.insert(result[k], v)
end
return result
end
--[[
WRONG:
local groups: table<string, <V>[]> | { [<K>]: Test }
EXPECTED:
local groups: table<string, Test[]>
]]
local groups = group_by(tests, "name")
Additional Notes
No response
Log File
No response
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず issue の Lua スニペットを再現し、language server のジェネリックアノテーション、インデックスアクセス、ipairs の型推論の各経路を調査します。V がローカルの結果アノテーションで受け入れられ、ipairs がジェネリックな要素型を返し、group_by(tests, "name") が table<string, Test[]> として推論されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- lua
- 領域
- devtools
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 42/100