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 Main { static final field = 0; static function main() { final local = 0; local = 5; // ok field = 5; // `field` go to definition error field; // ok final main2 = new Main2(); main2.value = 0; // `value` go to definition error main2.value; // ok } } class Main2 { public final value = 0; public function new() {} }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: