Adjusted tests to the new DescriptorRenderer behaviour
This commit is contained in:
committed by
Andrey Breslav
parent
2352d86932
commit
7deec28b9c
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructor1 {
|
||||
/*primary*/ public constructor ClassWithConstructor1(/*0*/ p : jet.Int)
|
||||
/*primary*/ public constructor ClassWithConstructor1(/*0*/ p: jet.Int)
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorWithValueParamWithDefaultValue {
|
||||
/*primary*/ public constructor ClassWithConstructorWithValueParamWithDefaultValue(/*0*/ p : jet.Int = ...)
|
||||
/*primary*/ public constructor ClassWithConstructorWithValueParamWithDefaultValue(/*0*/ p: jet.Int = ...)
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p : jet.Int = ..., /*1*/ s : jet.Int)
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: jet.Int = ..., /*1*/ s: jet.Int)
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal final class TestingKotlinCollections {
|
||||
/*primary*/ public constructor TestingKotlinCollections(/*0*/ arguments : jet.Collection<jet.String>)
|
||||
internal final val arguments : jet.Collection<jet.String>
|
||||
internal final fun <get-arguments>() : jet.Collection<jet.String>
|
||||
/*primary*/ public constructor TestingKotlinCollections(/*0*/ arguments: jet.Collection<jet.String>)
|
||||
internal final val arguments: jet.Collection<jet.String>
|
||||
internal final fun <get-arguments>(): jet.Collection<jet.String>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p : jet.Int = ..., /*1*/ d : jet.Int = ...)
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: jet.Int = ..., /*1*/ d: jet.Int = ...)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q : jet.Int)
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q: jet.Int)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q : Q)
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q: Q)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class OneTypeParameterErased</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor OneTypeParameterErased</*0*/ P, /*1*/ Q>(/*0*/ q : Q)
|
||||
/*primary*/ public constructor OneTypeParameterErased</*0*/ P, /*1*/ Q>(/*0*/ q: Q)
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ internal final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
internal final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p : jet.Int = ...)
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: jet.Int = ...)
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
/*primary*/ private constructor TestConstructor(/*0*/ p : jet.Int = ...)
|
||||
/*primary*/ private constructor TestConstructor(/*0*/ p: jet.Int = ...)
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
/*primary*/ public constructor A(/*0*/ vararg a : jet.Int /*jet.IntArray*/, /*1*/ f : () -> jet.Unit)
|
||||
/*primary*/ public constructor A(/*0*/ vararg a: jet.Int /*jet.IntArray*/, /*1*/ f: () -> jet.Unit)
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
/*primary*/ public constructor A(/*0*/ vararg a : jet.Int /*jet.IntArray*/)
|
||||
/*primary*/ public constructor A(/*0*/ vararg a: jet.Int /*jet.IntArray*/)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user