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
In situations like
Foo: class { x: Int hello: func { println("hello" } world: static func { println("world") } init: func { x = 3 hello() world() } }
detect the missing this and This. It should be
this
This
this x = 3 this hello() This world()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In situations like
detect the missing
this
andThis
. It should beThe text was updated successfully, but these errors were encountered: