[IR] update testdata after using maxBlankLines=1 for Printer
This commit is contained in:
committed by
teamcityserver
parent
6e318893f6
commit
602f0ddbc8
Vendored
-9
@@ -4,9 +4,6 @@ annotation class A1 : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class A2 : Annotation {
|
||||
@@ -15,9 +12,6 @@ annotation class A2 : Annotation {
|
||||
field = a
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class AA : Annotation {
|
||||
@@ -26,9 +20,6 @@ annotation class AA : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A2(a = A1(x = 42))
|
||||
|
||||
-7
@@ -1,8 +1,6 @@
|
||||
annotation class Ann : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
interface IFoo {
|
||||
@@ -19,8 +17,6 @@ interface IFoo {
|
||||
@Ann
|
||||
abstract fun String.testExtFun()
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class DFoo : IFoo {
|
||||
@@ -51,8 +47,5 @@ class DFoo : IFoo {
|
||||
return #$$delegate_0.<get-testVal>()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
-3
@@ -8,9 +8,6 @@ annotation class A : Annotation {
|
||||
field = y
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A(x = "abc", y = 123)
|
||||
|
||||
Vendored
-3
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A(xs = ["abc", "def"])
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class TestAnnWithIntArray : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class TestAnnWithStringArray : Annotation {
|
||||
@@ -15,9 +12,6 @@ annotation class TestAnnWithStringArray : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnnWithIntArray(x = [1, 2, 3])
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = klass
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class C {
|
||||
@@ -16,9 +13,6 @@ class C {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A(klass = C::class)
|
||||
|
||||
-26
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "class")
|
||||
@@ -17,16 +14,11 @@ class TestClass {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "interface")
|
||||
interface TestInterface {
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "object")
|
||||
@@ -37,9 +29,6 @@ object TestObject {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Host {
|
||||
@@ -57,14 +46,8 @@ class Host {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "enum")
|
||||
@@ -75,13 +58,6 @@ enum class TestEnum : Enum<TestEnum> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
fun values(): Array<TestEnum> /* Synthetic body for ENUM_VALUES */
|
||||
|
||||
fun valueOf(value: String): TestEnum /* Synthetic body for ENUM_VALUEOF */
|
||||
@@ -92,7 +68,5 @@ enum class TestEnum : Enum<TestEnum> {
|
||||
annotation class TestAnnotation : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
-3
@@ -8,9 +8,6 @@ annotation class A : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A(x = 1)
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class TestClass {
|
||||
@@ -22,8 +19,5 @@ class TestClass {
|
||||
this/*TestClass*/()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
-2
@@ -1,8 +1,6 @@
|
||||
annotation class Ann : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
val test1: Int /* by */
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Cell {
|
||||
@@ -29,9 +26,6 @@ class Cell {
|
||||
<this>.<set-value>(<set-?> = newValue)
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
val test1: Int /* by */
|
||||
|
||||
-8
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
open enum class TestEnum : Enum<TestEnum> {
|
||||
@@ -20,11 +17,6 @@ open enum class TestEnum : Enum<TestEnum> {
|
||||
ENTRY1 init = TODO("IrEnumConstructorCall") @TestAnn(x = "ENTRY2")
|
||||
ENTRY2 init = TODO("IrEnumConstructorCall")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
fun values(): Array<TestEnum> /* Synthetic body for ENUM_VALUES */
|
||||
|
||||
fun valueOf(value: String): TestEnum /* Synthetic body for ENUM_VALUEOF */
|
||||
|
||||
-8
@@ -7,11 +7,6 @@ enum class En : Enum<En> {
|
||||
|
||||
A init = TODO("IrEnumConstructorCall") B init = TODO("IrEnumConstructorCall") C init = TODO("IrEnumConstructorCall") D init = TODO("IrEnumConstructorCall")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
fun values(): Array<En> /* Synthetic body for ENUM_VALUES */
|
||||
|
||||
fun valueOf(value: String): En /* Synthetic body for ENUM_VALUEOF */
|
||||
@@ -24,9 +19,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = En)
|
||||
|
||||
-3
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
val testVal: String
|
||||
|
||||
@@ -8,8 +8,5 @@ annotation class A : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
-3
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = 42)
|
||||
|
||||
Vendored
-4
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun foo(m: Map<String, Int>) {
|
||||
@@ -20,6 +17,5 @@ fun foo(m: Map<String, Int>) {
|
||||
return test$delegate.getValue<Int>(thisRef = null, property = ::test)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
-6
@@ -1,22 +1,16 @@
|
||||
annotation class A1 : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class A2 : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class A3 : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A1
|
||||
|
||||
-5
@@ -1,8 +1,6 @@
|
||||
annotation class Ann : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Test {
|
||||
@@ -16,8 +14,5 @@ class Test {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
-3
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "testVal.property")
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class C {
|
||||
@@ -28,8 +25,5 @@ class C {
|
||||
@A(x = "C.y.set")
|
||||
set
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
-3
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
val test1: String
|
||||
|
||||
Vendored
-5
@@ -1,8 +1,6 @@
|
||||
annotation class AnnParam : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
var p: Int
|
||||
@@ -22,8 +20,5 @@ class C {
|
||||
get
|
||||
set
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
Vendored
-5
@@ -1,8 +1,6 @@
|
||||
annotation class Ann : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class A {
|
||||
@@ -21,9 +19,6 @@ class A {
|
||||
return ""
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun String?.topLevelF(): String {
|
||||
|
||||
Vendored
-3
@@ -4,9 +4,6 @@ annotation class A : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A(xs = [["a"], ["b"]])
|
||||
|
||||
-3
@@ -5,9 +5,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@TestAnn(x = "TestTypeAlias")
|
||||
|
||||
-2
@@ -2,8 +2,6 @@
|
||||
annotation class Anno : Annotation {
|
||||
constructor() /* primary */
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun <@Anno T : Any?> foo() {
|
||||
|
||||
-6
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun testFun(x: Int) {
|
||||
@@ -23,8 +20,5 @@ class TestClassConstructor1 {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
-9
@@ -4,9 +4,6 @@ annotation class A1 : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class A2 : Annotation {
|
||||
@@ -15,9 +12,6 @@ annotation class A2 : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
annotation class AA : Annotation {
|
||||
@@ -26,9 +20,6 @@ annotation class AA : Annotation {
|
||||
field = xs
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@A1(xs = [1, 2, 3])
|
||||
|
||||
-3
@@ -4,9 +4,6 @@ annotation class TestAnn : Annotation {
|
||||
field = x
|
||||
get
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
|
||||
Reference in New Issue
Block a user