Read*BinaryClassTest: compare serialized namespace with hardcopy
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
namespace test
|
||||
|
||||
final class test.Ramification : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Ramification
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ in T : jet.Any?>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace test
|
||||
|
||||
final class test.Outer : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Outer
|
||||
final class test.Outer.Inner : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Outer.Inner
|
||||
}
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ in T : jet.Any?>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ T : jet.Any?>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : jet.Any?, /*1,r*/ B : A>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : jet.Any?, /*1,r*/ in B : A>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : java.lang.Number>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : java.io.Serializable & java.lang.Number>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : java.io.Serializable>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ A : java.io.Serializable & java.lang.Number>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ P : jet.Any?, /*1,r*/ Q : jet.Any?>
|
||||
}
|
||||
@@ -0,0 +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</*0,r*/ out P : jet.Any?, /*1,r*/ Q : jet.Any?>
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace test
|
||||
|
||||
abstract class test.Aaa : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Aaa
|
||||
}
|
||||
final class test.Bbb : test.Aaa {
|
||||
final /*constructor*/ fun <init>(): test.Bbb
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace test
|
||||
|
||||
abstract class test.Aaa</*0,r*/ P : jet.Any?> : jet.Any {
|
||||
final /*constructor*/ fun </*0,r*/ P : jet.Any?><init>(): test.Aaa</*0,r*/ P : jet.Any?>
|
||||
}
|
||||
final class test.Bbb : test.Aaa<java.util.Random> {
|
||||
final /*constructor*/ fun <init>(): test.Bbb
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace test
|
||||
|
||||
abstract trait test.Aaa</*0,r*/ P : jet.Any?> : jet.Any {
|
||||
}
|
||||
final class test.Bbb : test.Aaa<java.util.Random> {
|
||||
final /*constructor*/ fun <init>(): test.Bbb
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace test
|
||||
|
||||
final class test.Outer : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Outer
|
||||
final class test.Outer.Inner : jet.Any {
|
||||
final /*constructor*/ fun <init>(): test.Outer.Inner
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
namespace test
|
||||
|
||||
abstract trait test.Trtrtr : jet.Any {
|
||||
}
|
||||
Reference in New Issue
Block a user