[IR] update testdata: removed extra indentation for function expressions

This commit is contained in:
Zalim Bashorov
2020-11-06 03:26:51 +03:00
committed by teamcityserver
parent cf5ba82453
commit ab8188b032
76 changed files with 168 additions and 168 deletions
@@ -10,11 +10,11 @@ fun foo2(r1: IRunnable, r2: IRunnable, vararg s: String) {
}
fun test(fn: Function0<Unit>, r: IRunnable, s: String, arr: Array<String>) {
foo1(r = local fun <anonymous>() {
foo1(r = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [s])
foo1(r = local fun <anonymous>() {
foo1(r = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [*arr])
@@ -22,33 +22,33 @@ fun test(fn: Function0<Unit>, r: IRunnable, s: String, arr: Array<String>) {
foo1(r = fn /*-> IRunnable */, s = [*arr])
foo1(r = r, s = [s])
foo1(r = r, s = [*arr])
foo2(r1 = local fun <anonymous>() {
foo2(r1 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, r2 = local fun <anonymous>() {
/*-> IRunnable */, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [s])
foo2(r1 = local fun <anonymous>() {
foo2(r1 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, r2 = local fun <anonymous>() {
/*-> IRunnable */, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [*arr])
foo2(r1 = fn /*-> IRunnable */, r2 = local fun <anonymous>() {
foo2(r1 = fn /*-> IRunnable */, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [s])
foo2(r1 = fn /*-> IRunnable */, r2 = local fun <anonymous>() {
foo2(r1 = fn /*-> IRunnable */, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [*arr])
foo2(r1 = r, r2 = local fun <anonymous>() {
foo2(r1 = r, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [s])
foo2(r1 = r, r2 = local fun <anonymous>() {
foo2(r1 = r, r2 = local fun <anonymous>() {
return Unit
}
/*-> IRunnable */, s = [*arr])