fix tests in org.jetbrains.kotlin.checkers
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructor0 {
|
||||
public final class ClassWithConstructor0 {
|
||||
/*primary*/ public constructor ClassWithConstructor0()
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructor1 {
|
||||
public final class ClassWithConstructor1 {
|
||||
/*primary*/ public constructor ClassWithConstructor1(/*0*/ p: kotlin.Int)
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorWithValueParamWithDefaultValue {
|
||||
public final class ClassWithConstructorWithValueParamWithDefaultValue {
|
||||
/*primary*/ public constructor ClassWithConstructorWithValueParamWithDefaultValue(/*0*/ p: kotlin.Int = ...)
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
public final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: kotlin.Int = ..., /*1*/ s: kotlin.Int)
|
||||
}
|
||||
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
internal final class TestingKotlinCollections {
|
||||
public final class TestingKotlinCollections {
|
||||
/*primary*/ public constructor TestingKotlinCollections(/*0*/ arguments: kotlin.Collection<kotlin.String>)
|
||||
internal final val arguments: kotlin.Collection<kotlin.String>
|
||||
internal final fun <get-arguments>(): kotlin.Collection<kotlin.String>
|
||||
public final val arguments: kotlin.Collection<kotlin.String>
|
||||
public final fun <get-arguments>(): kotlin.Collection<kotlin.String>
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
public final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: kotlin.Int = ..., /*1*/ d: kotlin.Int = ...)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
public final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
public final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q: kotlin.Int)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
public final class ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P, /*1*/ Q>(/*0*/ q: Q)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class ClassWithConstructorAndTypeParameter</*0*/ P> {
|
||||
public final class ClassWithConstructorAndTypeParameter</*0*/ P> {
|
||||
/*primary*/ public constructor ClassWithConstructorAndTypeParameter</*0*/ P>()
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class OneTypeParameterErased</*0*/ P, /*1*/ Q> {
|
||||
public final class OneTypeParameterErased</*0*/ P, /*1*/ Q> {
|
||||
/*primary*/ public constructor OneTypeParameterErased</*0*/ P, /*1*/ Q>(/*0*/ q: Q)
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,9 +1,9 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A()
|
||||
|
||||
internal final class TestConstructor {
|
||||
public final class TestConstructor {
|
||||
/*primary*/ public constructor TestConstructor(/*0*/ p: kotlin.Int = ...)
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class TestConstructor {
|
||||
public final class TestConstructor {
|
||||
/*primary*/ private constructor TestConstructor(/*0*/ p: kotlin.Int = ...)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A(/*0*/ vararg a: kotlin.Int /*kotlin.IntArray*/, /*1*/ f: () -> kotlin.Unit)
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
internal final class A {
|
||||
public final class A {
|
||||
/*primary*/ public constructor A(/*0*/ vararg a: kotlin.Int /*kotlin.IntArray*/)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user