[IR] update testdata: better support for IrCall

This commit is contained in:
Zalim Bashorov
2020-11-06 01:14:47 +03:00
committed by teamcityserver
parent ef2adfa835
commit 197f5ca885
72 changed files with 203 additions and 203 deletions
@@ -23,15 +23,15 @@ operator fun String.getValue(receiver: Any?, p: Any): String {
}
val testO: String /* by */
field = provideDelegate($receiver = TODO("IrConstructorCall"), host = null, p = ::testO)
field = TODO("IrConstructorCall").provideDelegate(host = null, p = ::testO)
get(): String {
return getValue($receiver = #testO$delegate, receiver = null, p = ::testO)
return #testO$delegate.getValue(receiver = null, p = ::testO)
}
val testK: String /* by */
field = "K"
get(): String {
return getValue($receiver = #testK$delegate, receiver = null, p = ::testK)
return #testK$delegate.getValue(receiver = null, p = ::testK)
}
val testOK: String