Not writing fake parameters of enum constructors to generic signature.
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
enum class EnumWithGenericConstructorParameter(list: List<String>?) {
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace test
|
||||
|
||||
internal final enum class test.EnumWithGenericConstructorParameter : jet.Enum<test.EnumWithGenericConstructorParameter> {
|
||||
private final /*primary constructor*/ fun <init>(/*0*/ list: jet.List<jet.String>?): test.EnumWithGenericConstructorParameter
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.EnumWithGenericConstructorParameter.<class-object-for-EnumWithGenericConstructorParameter> {
|
||||
private final /*constructor*/ fun <init>(): test.EnumWithGenericConstructorParameter.<class-object-for-EnumWithGenericConstructorParameter>
|
||||
public final fun valueOf(/*0*/ value: jet.String): test.EnumWithGenericConstructorParameter
|
||||
public final fun values(): jet.Array<test.EnumWithGenericConstructorParameter>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package test
|
||||
|
||||
enum class EnumWithPrimitiveConstructorParameter(b: Boolean) {
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace test
|
||||
|
||||
internal final enum class test.EnumWithPrimitiveConstructorParameter : jet.Enum<test.EnumWithPrimitiveConstructorParameter> {
|
||||
private final /*primary constructor*/ fun <init>(/*0*/ b: jet.Boolean): test.EnumWithPrimitiveConstructorParameter
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.EnumWithPrimitiveConstructorParameter.<class-object-for-EnumWithPrimitiveConstructorParameter> {
|
||||
private final /*constructor*/ fun <init>(): test.EnumWithPrimitiveConstructorParameter.<class-object-for-EnumWithPrimitiveConstructorParameter>
|
||||
public final fun valueOf(/*0*/ value: jet.String): test.EnumWithPrimitiveConstructorParameter
|
||||
public final fun values(): jet.Array<test.EnumWithPrimitiveConstructorParameter>
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace test
|
||||
|
||||
internal final enum class test.In : jet.Enum<test.In> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.In
|
||||
private final /*constructor*/ fun <init>(): test.In
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.In.<class-object-for-In> {
|
||||
@@ -12,7 +12,7 @@ internal final enum class test.In : jet.Enum<test.In> {
|
||||
}
|
||||
}
|
||||
private final enum class test.Pr : jet.Enum<test.Pr> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.Pr
|
||||
private final /*constructor*/ fun <init>(): test.Pr
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
private final class object test.Pr.<class-object-for-Pr> {
|
||||
@@ -23,7 +23,7 @@ private final enum class test.Pr : jet.Enum<test.Pr> {
|
||||
}
|
||||
}
|
||||
public final enum class test.Pu : jet.Enum<test.Pu> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.Pu
|
||||
private final /*constructor*/ fun <init>(): test.Pu
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
public final class object test.Pu.<class-object-for-Pu> {
|
||||
|
||||
@@ -5,7 +5,7 @@ internal final class test.A : jet.Any {
|
||||
internal final class object test.A.<class-object-for-A> {
|
||||
private final /*constructor*/ fun <init>(): test.A.<class-object-for-A>
|
||||
internal final enum class test.A.<class-object-for-A>.E : jet.Enum<test.A.<class-object-for-A>.E> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.A.<class-object-for-A>.E
|
||||
private final /*constructor*/ fun <init>(): test.A.<class-object-for-A>.E
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.A.<class-object-for-A>.E.<class-object-for-E> {
|
||||
|
||||
@@ -5,7 +5,7 @@ internal final class test.A : jet.Any {
|
||||
internal final class object test.A.<class-object-for-A> {
|
||||
private final /*constructor*/ fun <init>(): test.A.<class-object-for-A>
|
||||
internal final enum class test.A.<class-object-for-A>.E : jet.Enum<test.A.<class-object-for-A>.E> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.A.<class-object-for-A>.E
|
||||
private final /*constructor*/ fun <init>(): test.A.<class-object-for-A>.E
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.A.<class-object-for-A>.E.<class-object-for-E> {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace test
|
||||
|
||||
internal final enum class test.MyEnum : jet.Enum<test.MyEnum> {
|
||||
private final /*constructor*/ fun <init>(/*0*/ p0: jet.String?, /*1*/ p1: jet.Int): test.MyEnum
|
||||
private final /*constructor*/ fun <init>(): test.MyEnum
|
||||
public final override /*1*/ /*fake_override*/ fun name(): jet.String
|
||||
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
|
||||
internal final class object test.MyEnum.<class-object-for-MyEnum> {
|
||||
|
||||
Reference in New Issue
Block a user