Skip to content
New issue

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

Feature request: support usage before declaration for method #885

Open
BLKTower opened this issue Dec 28, 2024 · 1 comment
Open

Feature request: support usage before declaration for method #885

BLKTower opened this issue Dec 28, 2024 · 1 comment
Labels
feature request New feature or request

Comments

@BLKTower
Copy link

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

@hishamhm hishamhm added the feature request New feature or request label Dec 31, 2024
@JR-Mitchell
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants