报告通过方法调用访问的属性。
示例:
class Foo { int foo } def bar = new Foo() print(bar.getFoo())
在应用快速修复后:
class Foo { int foo } def bar = new Foo() print(bar.foo)