this
例:
class C { private val i = 1 fun f() = this.i }
クイックフィックスを使用すると、冗長な this が除去されます。
class C { private val i = 1 fun f() = i }