LuaLS / LuaLS/lua-language-server
View definition of overloaded value via __index of metatable doesn't seem right
未关闭
还没有人认领这个 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?
Hover
Expected Behaviour
local a = {k = 'v1'}
local b = setmetatable({}, {__index = a})
b.k = 'v2'
View definition of a.k:
local a = {k = 'v1'}
Actual Behaviour
View definition of a.k:
Reproduction steps
Press F12 while selecting the k of the first line of the code below:
local a = {k = 'v1'}
local b = setmetatable({}, {__index = a})
b.k = 'v2'
Additional Notes
Chinese colloquial description:
如上所述,当我试图浏览 a.k 的定义时,同时弹出了 a.k 与 b.k 的定义。这显然是不对的:表 b 元表的__index 为 a,因此 b.k 只是继承了 a.k,其定义与 a.k 的定义并无关联,不应显示到 a.k 上。
当借助__index 实现的继承较多时,定义就失去了它应有的作用,非常凌乱。
我正在为一款游戏的 mod 开发 LLS 的 Addon 与 Plugin,因此我愿意提供我力所能及的帮助。如果已有重复的 issue,恳请谅解!
Log File
file_c%3A_LLS-issue.log
I suppose this may not be helpful. But just upload it.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
使用三行 Lua 代码片段复现 VS Code extension 中的定义行为,并比较两个 k 引用的 F12 结果。跟踪表字段和 __index 的定义解析路径;完成标准是选择 a.k 时只显示 a.k 的定义,而不是同时显示 b.k 的定义。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- lua
- 领域
- devtools
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 描述清楚
- 新手友好度
- 35/100