[IR] update testdata: print class name for callable references without receivers

This commit is contained in:
Zalim Bashorov
2020-11-11 17:02:39 +03:00
committed by teamcityserver
parent b6e37c1f89
commit e94528fe0d
12 changed files with 27 additions and 27 deletions
@@ -40,9 +40,9 @@ class Host {
}
val testMember: String /* by */
field = DelegateProvider(value = "OK").provideDelegate(thisRef = <this>, property = ::testMember)
field = DelegateProvider(value = "OK").provideDelegate(thisRef = <this>, property = Host::testMember)
get(): String {
return <this>.#testMember$delegate.getValue(thisRef = <this>, property = ::testMember)
return <this>.#testMember$delegate.getValue(thisRef = <this>, property = Host::testMember)
}
}
@@ -27,9 +27,9 @@ object Host {
}
val String.plusK: String /* by */
field = (<this>, "K").provideDelegate(host = <this>, p = ::plusK)
field = (<this>, "K").provideDelegate(host = <this>, p = Host::plusK)
get(): String {
return <this>.#plusK$delegate.getValue(receiver = <this>, p = ::plusK)
return <this>.#plusK$delegate.getValue(receiver = <this>, p = Host::plusK)
}
val ok: String