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
This is an extended problem of #78.
class Issue78Model implements Model { @:constant var foo:Int; @:computed var bar:Int = foo + 1; // <-- this foo currently references the constructor argument public function new(foo:Int) { this = { foo: foo + 1 } } }
I think we need a way to somehow restore the reference to class member in proper places...
The text was updated successfully, but these errors were encountered:
See failing test: 6a88e05
Sorry, something went wrong.
No branches or pull requests
This is an extended problem of #78.
I think we need a way to somehow restore the reference to class member in proper places...
The text was updated successfully, but these errors were encountered: