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
Giving:
local record mod end function mod:foo1() self:foo2() -- error: invalid key 'foo2' end function mod:foo2() end
It'd be nice that teal can support usage before declaration for method. Desired behavior: No error
The text was updated successfully, but these errors were encountered:
I just thought I'd note that the following (explicitly declaring the method type before assigning the method itself) does work:
local record mod foo2: function(self) end function mod:foo1() self:foo2() -- no longer errors, as foo2 has been forward declared end function mod:foo2() end
Sorry, something went wrong.
No branches or pull requests
Giving:
It'd be nice that teal can support usage before declaration for method.
Desired behavior: No error
The text was updated successfully, but these errors were encountered: