LuaLS / LuaLS/lua-language-server
generic in the loop
未关闭
还没有人认领这个 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
Expected Behaviour
Actual Behaviour
Reproduction steps
---@generic T
---@param t T[]
---@return fun(): { first: integer, second: T }
local function test_function(t)
local ending = #t
local begining = 1
local j = begining
return function()
if ending < j then
return nil
end
local i = t[j]
j = j + 1
if i then return { first = j - 1, second = i } end
end
end
---@type integer[]
local test_table = {}
local test_result = test_function(test_table)()
local test1 = test_result.second
for itr in test_function(test_table) do
local test2 = itr.first;
local test3 = itr.second;
end
Additional Notes
No response
Log File
No response
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先运行 issue 中的 Lua 复现,并将推断出的类型与 Expected Behaviour 和 Actual Behaviour 截图进行比较。跟踪 language server 对泛型函数和迭代器返回值进行注释和类型检查的入口点,然后验证报告的类型是否与预期结果一致。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- lua, vscode
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100