报告可以省略的显式 this

示例:


  class C {
      private val i = 1
      fun f() = this.i
  }

该快速修复会移除冗余的 this


  class C {
      private val i = 1
      fun f() = i
  }