Rename test data folder according to the new test naming convention.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructor0()
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructor0 : jet.Any {
|
||||
public final /*constructor*/ fun <init>(): test.ClassWithConstructor0
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructor1(p: Int)
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructor1 : jet.Any {
|
||||
public final /*constructor*/ fun <init>(/*0*/ p: jet.Int): test.ClassWithConstructor1
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructorWithValueParamWithDefaultValue(p: Int = 1)
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructorWithValueParamWithDefaultValue : jet.Any {
|
||||
public final /*constructor*/ fun <init>(/*0*/ p: jet.Int = ?): test.ClassWithConstructorWithValueParamWithDefaultValue
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
import java.util.Collection
|
||||
|
||||
class TestingKotlinCollections(val arguments: Collection<String>)
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.TestingKotlinCollections : jet.Any {
|
||||
public final /*constructor*/ fun <init>(/*0*/ arguments: java.util.Collection<jet.String>): test.TestingKotlinCollections
|
||||
internal final val arguments: java.util.Collection<jet.String>
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructorAndTypeParameter<P, Q>()
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructorAndTypeParameter</*0*/ P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
public final /*constructor*/ fun </*0*/ P : jet.Any?, /*1*/ Q : jet.Any?><init>(): test.ClassWithConstructorAndTypeParameter<P, Q>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructorAndTypeParameter<P, Q>(q: Int)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructorAndTypeParameter</*0*/ P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
public final /*constructor*/ fun </*0*/ P : jet.Any?, /*1*/ Q : jet.Any?><init>(/*0*/ q: jet.Int): test.ClassWithConstructorAndTypeParameter<P, Q>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructorAndTypeParameter<P, Q>(q: Q)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructorAndTypeParameter</*0*/ P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
public final /*constructor*/ fun </*0*/ P : jet.Any?, /*1*/ Q : jet.Any?><init>(/*0*/ q: Q): test.ClassWithConstructorAndTypeParameter<P, Q>
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class ClassWithConstructorAndTypeParameter<P>()
|
||||
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.ClassWithConstructorAndTypeParameter</*0*/ P : jet.Any?> : jet.Any {
|
||||
public final /*constructor*/ fun </*0*/ P : jet.Any?><init>(): test.ClassWithConstructorAndTypeParameter<P>
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
package test
|
||||
|
||||
class OneTypeParameterErased<P, Q>(q: Q)
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
internal final class test.OneTypeParameterErased</*0*/ P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
public final /*constructor*/ fun </*0*/ P : jet.Any?, /*1*/ Q : jet.Any?><init>(/*0*/ q: Q): test.OneTypeParameterErased<P, Q>
|
||||
}
|
||||
Reference in New Issue
Block a user