Introduce 'reified' instead of 'erased'
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Wine</*0,r*/ in T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ in T : jet.Any?><init>(): test.Wine<T>
|
||||
final class test.Wine</*0*/ in T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ in T : jet.Any?><init>(): test.Wine<T>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Juice</*0,r*/ in T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ in T : jet.Any?><init>(): test.Juice<T>
|
||||
final class test.Juice</*0*/ in T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ in T : jet.Any?><init>(): test.Juice<T>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Beer</*0,r*/ T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ T : jet.Any?><init>(): test.Beer<T>
|
||||
final class test.Beer</*0*/ T : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ T : jet.Any?><init>(): test.Beer<T>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.ClassParamReferencesParam</*0,r*/ A : jet.Any?, /*1,r*/ B : A> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : jet.Any?, /*1,r*/ B : A><init>(): test.ClassParamReferencesParam<A, B>
|
||||
final class test.ClassParamReferencesParam</*0*/ A : jet.Any?, /*1*/ B : A> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : jet.Any?, /*1*/ B : A><init>(): test.ClassParamReferencesParam<A, B>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.ClassParamReferencesParam</*0,r*/ A : jet.Any?, /*1,r*/ in B : A> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : jet.Any?, /*1,r*/ in B : A><init>(): test.ClassParamReferencesParam<A, B>
|
||||
final class test.ClassParamReferencesParam</*0*/ A : jet.Any?, /*1*/ in B : A> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : jet.Any?, /*1*/ in B : A><init>(): test.ClassParamReferencesParam<A, B>
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace test
|
||||
|
||||
final class test.ClassParamReferencesSelf</*0,r*/ A : test.TraitWithP<A>> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : test.TraitWithP<A>><init>(): test.ClassParamReferencesSelf<A>
|
||||
final class test.ClassParamReferencesSelf</*0*/ A : test.TraitWithP<A>> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : test.TraitWithP<A>><init>(): test.ClassParamReferencesSelf<A>
|
||||
}
|
||||
abstract trait test.TraitWithP</*0,r*/ P : jet.Any?> : jet.Any {
|
||||
abstract trait test.TraitWithP</*0*/ P : jet.Any?> : jet.Any {
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Clock</*0,r*/ A : java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : java.lang.Number><init>(): test.Clock<A>
|
||||
final class test.Clock</*0*/ A : java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : java.lang.Number><init>(): test.Clock<A>
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Clock</*0,r*/ A : java.io.Serializable & java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : java.io.Serializable & java.lang.Number><init>(): test.Clock<A>
|
||||
final class test.Clock</*0*/ A : java.io.Serializable & java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : java.io.Serializable & java.lang.Number><init>(): test.Clock<A>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Clock</*0,r*/ A : java.io.Serializable> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : java.io.Serializable><init>(): test.Clock<A>
|
||||
final class test.Clock</*0*/ A : java.io.Serializable> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : java.io.Serializable><init>(): test.Clock<A>
|
||||
}
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Clock</*0,r*/ A : java.io.Serializable & java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ A : java.io.Serializable & java.lang.Number><init>(): test.Clock<A>
|
||||
final class test.Clock</*0*/ A : java.io.Serializable & java.lang.Number> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ A : java.io.Serializable & java.lang.Number><init>(): test.Clock<A>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.ClassTwoParams</*0,r*/ P : jet.Any?, /*1,r*/ Q : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ P : jet.Any?, /*1,r*/ Q : jet.Any?><init>(): test.ClassTwoParams<P, Q>
|
||||
final class test.ClassTwoParams</*0*/ P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ P : jet.Any?, /*1*/ Q : jet.Any?><init>(): test.ClassTwoParams<P, Q>
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.ClassTwoParams</*0,r*/ out P : jet.Any?, /*1,r*/ Q : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ out P : jet.Any?, /*1,r*/ Q : jet.Any?><init>(): test.ClassTwoParams<P, Q>
|
||||
final class test.ClassTwoParams</*0*/ out P : jet.Any?, /*1*/ Q : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ out P : jet.Any?, /*1*/ Q : jet.Any?><init>(): test.ClassTwoParams<P, Q>
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
namespace test
|
||||
|
||||
abstract class test.Aaa</*0,r*/ P : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ P : jet.Any?><init>(): test.Aaa<P>
|
||||
abstract class test.Aaa</*0*/ P : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0*/ P : jet.Any?><init>(): test.Aaa<P>
|
||||
}
|
||||
final class test.Bbb : test.Aaa<java.util.Random> {
|
||||
final /*constructor*/ fun <init>(): test.Bbb
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
namespace test
|
||||
|
||||
abstract trait test.Aaa</*0,r*/ P : jet.Any?> : jet.Any {
|
||||
abstract trait test.Aaa</*0*/ P : jet.Any?> : jet.Any {
|
||||
}
|
||||
final class test.Bbb : test.Aaa<java.util.Random> {
|
||||
final /*constructor*/ fun <init>(): test.Bbb
|
||||
|
||||
Reference in New Issue
Block a user