We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
---@class Student local Student = { name = nil, age = nil, } ---@type Student local sd = {} local age = sd.age
this way can work at v2.6.8 and it did't work after update to 3.X
The text was updated successfully, but these errors were encountered:
I have some issue here:
---@class Foo ---@field f number ---@type fun(self: Foo, ...): Foo local Foo = setmetatable({}, { __call = function(self) return self end }) function Foo.new() end function Foo:doSomething() return self.f -- Undefined field `f`. end
Sorry, something went wrong.
#1050
cf3d510
class -> local/global -> .value
a37234b
No branches or pull requests
this way can work at v2.6.8 and it did't work after update to 3.X
The text was updated successfully, but these errors were encountered: