LuaLS / LuaLS/lua-language-server
能否支持 类似 python 的 import 的模块类型?
Nobody has claimed this yet.
- Dominant language
- Lua
- Stars
- 4.4k
- Forks
- 442
- PR merge metrics
- No merged PRs in 30d
Description
### 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
### Expected Behaviour
能否支持 类似 python 的 import 的模块类型?
例如: a.lua 内容如下
a = 1
b = 'hello'
function c()
end
b.lua 内容如下
local m = import('a.lua')
print(m.a)
print(m.b)
m.c()
其中 在 b.lua 中 m.a m.b m.c 都可以被正确识别出正确的类型
### Actual Behaviour
例如: a.lua 内容如下
a = 1
b = 'hello'
function c()
end
b.lua 内容如下
local m = import('a.lua')
print(m.a)
print(m.b)
m.c()
其中 在 b.lua 中 m.a m.b m.c 都可以被正确识别出正确的类型
### Reproduction steps
例如: a.lua 内容如下
a = 1
b = 'hello'
function c()
end
b.lua 内容如下
local m = import('a.lua')
print(m.a)
print(m.b)
m.c()
其中 在 b.lua 中 m.a m.b m.c 都可以被正确识别出正确的类型
### Additional Notes
_No response_
### Log File
_No response_
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the a.lua and b.lua reproduction in the issue and inspect how the language server handles annotations for the import call. The requested behavior is for m.a, m.b, and m.c to resolve to the corresponding declarations in a.lua; the issue names no repository files or tests to run.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- lua
- Domain
- devtools
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 25/100