LuaLS / lua-language-server

A language server that offers Lua language support - programmed in Lua
https://luals.github.io
MIT License
3.38k stars 319 forks source link

[reference] Check also in tablefield #2911

Closed pborkowski-ms closed 4 weeks ago

pborkowski-ms commented 1 month ago

We had a problem that in this code:

---@class A
---@field x number

---@type A
local a = {
    x = 4
}

VSCode can't find this reference.

After fixing it, it works fine : )

output

sumneko commented 4 weeks ago

Thank you!