[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
@@ -14,7 +14,7 @@ fun test2(f: @ExtensionFunctionType Function1<String, Unit>) {
}
fun test3(): String {
return k($receiver = "hello").invoke()
return "hello".k().invoke()
}
fun test4(ns: String?): String? {
@@ -23,7 +23,7 @@ fun test4(ns: String?): String? {
val tmp0_safe_receiver: String? = ns
when {
EQEQ(arg0 = tmp0_safe_receiver, arg1 = null) -> null
true -> k($receiver = tmp0_safe_receiver)
true -> tmp0_safe_receiver.k()
}
}
when {