this
예:
class C { private val i = 1 fun f() = this.i }
빠른 수정에서는 불필요한 this를 제거합니다.
class C { private val i = 1 fun f() = i }