LuaLS / LuaLS/lua-language-server
cannot recognize emmy field
未关闭
还没有人认领这个 Issue。
feat/LuaCats Annotations
question
- 主要语言
- Lua
- 星标
- 4.4k
- 派生
- 442
- PR 合并指标
- 30 天内没有已合并 PR
描述
I have defined an emmy class role:
---@class role
---@field equipment_mgr equipment_mgr
an emmy class equipment_mgr:
---@class equipment_mgr
local data = {
role = role, ---@type role
equipment = orm_equipment, ---@type table<integer, db.Equipment>
}
then add some method to equipment_mgr:
---@type equipment_mgr
local mt = {}
mt.__index = mt
---@return db.Equipment
function mt:get_equipment(uid)
return self.equipment[uid]
end
Lua Diagnostics cannot recognize the method get_equipment:

while other extension can
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先,在 Lua Diagnostics 中复现所示的 Lua 类、字段、元表和 get_equipment 方法。将其对该方法的识别与提到的另一个扩展进行比较;当 Lua Diagnostics 能够在 equipment_mgr 上识别 get_equipment 且不再出现所报告的诊断时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- lua
- 领域
- devtools
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100