lua-language-server icon indicating copy to clipboard operation
lua-language-server copied to clipboard

在class定义了private,但是继承后,不会警告是private

Open 514366607 opened this issue 3 years ago • 0 comments

Describe the bug 在class定义了private,但是继承后,不会警告是private

To Reproduce

---@class A
---@field private name string

---@class B : A

---@type B
local test = {}
test.name = "TestName"
print(test)

514366607 avatar Jul 29 '22 03:07 514366607