[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
@@ -4,7 +4,7 @@ annotation class Ann : Annotation {
}
val test1: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -9,7 +9,7 @@ annotation class A : Annotation {
fun foo(m: Map<String, Int>) {
@A(x = "foo/test")
val test: Int
val test$delegate: Lazy<Int> = lazy<Int>(initializer = local fun <anonymous>(): Int {
val test$delegate: Lazy<Int> = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -36,7 +36,7 @@ class C {
get
val test7: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -1,5 +1,5 @@
val test1: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -19,7 +19,7 @@ class C {
get
val test2: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -1,6 +1,6 @@
fun test1() {
val x: Int
val x$delegate: Lazy<Int> = lazy<Int>(initializer = local fun <anonymous>(): Int {
val x$delegate: Lazy<Int> = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -29,7 +29,7 @@ val test6: Int
get
val test7: Int /* by */
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
field = lazy<Int>(initializer = local fun <anonymous>(): Int {
return 42
}
)
@@ -1,26 +1,26 @@
val test1: Function1<String, String>
field = local fun <anonymous>(it: String): String {
field = local fun <anonymous>(it: String): String {
return it
}
get
val test2: @ExtensionFunctionType Function2<Any, Any, Any>
field = local fun Any.<anonymous>(it: Any): Int {
field = local fun Any.<anonymous>(it: Any): Int {
return it.hashCode()
}
get
val test3: Function2<Int, Int, Unit>
field = local fun <anonymous>(i: Int, j: Int) {
field = local fun <anonymous>(i: Int, j: Int) {
return Unit
}
get
val test4: Function2<Int, Int, Unit>
field = local fun <no name provided>(i: Int, j: Int) {
field = local fun <no name provided>(i: Int, j: Int) {
}
get
@@ -17,10 +17,10 @@ fun box(): String {
result = "OK"
}
return f(, f2 = local fun <anonymous>(): String {
return f(, f2 = local fun <anonymous>(): String {
return "O"
}
).plus(other = f(f1 = local fun <anonymous>(): String {
).plus(other = f(f1 = local fun <anonymous>(): String {
return "K"
}
))