LuaLS / LuaLS/lua-language-server
Undefined global `var` in a function which has injected `var` into env
未关闭
还没有人认领这个 Issue。
enhancement
- 主要语言
- Lua
- 星标
- 4.4k
- 派生
- 442
- PR 合并指标
- 30 天内没有已合并 PR
描述
Describe the bug
luv -v: LuaJIT 2.1.0-beta3 -- Copyright (C) 2005-2022 Mike Pall. https://luajit.org/
local A = {}
function A.sync(executor)
local env = getfenv(executor)
env.await = A.wait
-- ......
executor()
end
function A.wait(promise)
print('go')
end
A.sync(function()
await() -- Undefined global `await`.
end)
return A
Expected behavior
No Undefined global
If it's hard to fix, how can I trick the server into treating awati as a global variable but not become an item in completion outside the executor function.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
在正在运行的 Lua 语言服务器中使用 Lua 示例重现该报告,并检查分析器如何处理 getfenv、注入的环境成员和全局诊断。由于 issue 中没有指定源文件或测试,因此首先定位全局分析和补全相关的入口点。完成的标准是:await 在 executor 内不会被报告为未定义,但在 executor 外仍不会出现在补全中。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- lua
- 领域
- tooling
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100