static
this
Example:
class Foo { void bar() {} void foo() { bar(); } }
After the quick-fix is applied:
class Foo { void bar() {} void foo() { this.bar(); } }