[IR] update testdata: print class name for callable references without receivers
This commit is contained in:
committed by
teamcityserver
parent
b6e37c1f89
commit
e94528fe0d
@@ -24,16 +24,16 @@ class C {
|
||||
}
|
||||
)
|
||||
get(): Int {
|
||||
return <this>.#test2$delegate.getValue<Int>(thisRef = <this>, property = ::test2)
|
||||
return <this>.#test2$delegate.getValue<Int>(thisRef = <this>, property = C::test2)
|
||||
}
|
||||
|
||||
var test3: Any /* by */
|
||||
field = <this>.<get-map>()
|
||||
get(): Any {
|
||||
return <this>.#test3$delegate.getValue<Any, Any>(thisRef = <this>, property = ::test3)
|
||||
return <this>.#test3$delegate.getValue<Any, Any>(thisRef = <this>, property = C::test3)
|
||||
}
|
||||
set(<set-?>: Any) {
|
||||
return <this>.#test3$delegate.setValue<Any>(thisRef = <this>, property = ::test3, value = <set-?>)
|
||||
return <this>.#test3$delegate.setValue<Any>(thisRef = <this>, property = C::test3, value = <set-?>)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user