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 base ---@class builder ---@generic T: base ---@overload fun(name: `T`): T local builder = {} local function __call(self, name) .... end setmetatable(builder, { __call = __call })
Thats will be helpfull for table have an metatable.__call
The text was updated successfully, but these errors were encountered:
this has long been feature requested: #723
Sorry, something went wrong.
I think the grammar should like:
---@class builder ---@overload fun<T>(name: `T`): T local builder = {}
I think the grammar should like: ---@Class builder ---@overload fun(name: T): T local builder = {}
---@Class builder ---@overload fun(name: T): T local builder = {}
T
thats awesome look like c++ template
No branches or pull requests
Thats will be helpfull for table have an metatable.__call
The text was updated successfully, but these errors were encountered: