[IR] update testdata: super and receiver for field accesses

This commit is contained in:
Zalim Bashorov
2020-11-10 03:10:13 +03:00
committed by teamcityserver
parent 029ee6f2e7
commit a6b408978f
50 changed files with 294 additions and 294 deletions
@@ -24,16 +24,16 @@ class C {
}
)
get(): Int {
return #test2$delegate.getValue<Int>(thisRef = <this>, property = ::test2)
return <this>.#test2$delegate.getValue<Int>(thisRef = <this>, property = ::test2)
}
var test3: Any /* by */
field = <this>.<get-map>()
get(): Any {
return #test3$delegate.getValue<Any, Any>(thisRef = <this>, property = ::test3)
return <this>.#test3$delegate.getValue<Any, Any>(thisRef = <this>, property = ::test3)
}
set(<set-?>: Any) {
return #test3$delegate.setValue<Any>(thisRef = <this>, property = ::test3, value = <set-?>)
return <this>.#test3$delegate.setValue<Any>(thisRef = <this>, property = ::test3, value = <set-?>)
}
}