[IR] update testdata: removed extra indentation for function expressions
This commit is contained in:
committed by
teamcityserver
parent
cf5ba82453
commit
ab8188b032
Vendored
+10
-10
@@ -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])
|
||||
|
||||
Reference in New Issue
Block a user