报告隐式 this 的使用情况。

示例:


  class Foo {
      fun s() = ""

      fun test() {
          s()
      }
  }

该快速修复会显式指定 this


  class Foo {
      fun s() = ""

      fun test() {
          this.s()
      }
  }