LuaLS / LuaLS/lua-language-server
`module()` function isn't respected by the language server
未關閉
還沒有人認領這個 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?
Linux
What is the issue affecting?
Diagnostics/Syntax Checking
Expected Behaviour
When module() is used in a script, functions defined "globally", like so:
module("MyExampleModule")
function HelloWorld() end
Are understood by the language server to belong to the table at _G.MyExampleModule
Actual Behaviour
Using the above example, the language server incorrectly believes HelloWorld() is at _G.HelloWorld() as opposed to _G.MyExampleModule.HelloWorld()
Reproduction steps
- Copy the above example into a file
- Create another file in the same workspace
- Type "Hello"
- Observe that the autocomplete suggests the function
_G.HelloWorld(), which does not exist
Additional Notes
This cannot be worked around with setfenv()
Log File
N/A
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
使用所述的雙檔案範例和自動完成步驟,在 Visual Studio Code 擴充功能中重現此問題。追蹤 module("MyExampleModule") 在診斷和完成期間的處理方式,然後確認 HelloWorld 是在 _G.MyExampleModule 下而不是 _G.HelloWorld 下被建議。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- lua
- 領域
- devtools
- Issue 類型
- 缺陷
- 難度
- 4/5
- 預估耗時
- 3-5 天
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 45/100