Update lightclass tests renderer

+mute invalid old light classes tests
This commit is contained in:
Igor Yakovlev
2020-05-20 13:49:24 +03:00
parent c70383cc70
commit 309bf49a83
140 changed files with 1314 additions and 1191 deletions
+32 -31
View File
@@ -1,42 +1,43 @@
public final class A {
public A() { /* compiled code */ }
public final class A /* A*/ {
public A();// .ctor()
public static final class B {
public B() { /* compiled code */ }
public static final class I {
@org.jetbrains.annotations.NotNull
public static final A.B.I INSTANCE;
private I() { /* compiled code */ }
}
public static final class B /* A.B*/ {
public B();// .ctor()
public static final class II {
@org.jetbrains.annotations.NotNull
public static final A.B.II INSTANCE;
private II() { /* compiled code */ }
}
}
public static final class C {
@org.jetbrains.annotations.NotNull
public static final A.C INSTANCE;
public static final class I /* A.B.I*/ {
@org.jetbrains.annotations.NotNull()
public static final A.B.I INSTANCE;
private C() { /* compiled code */ }
private I();// .ctor()
public static final class D {
@org.jetbrains.annotations.NotNull
public static final A.C.D INSTANCE;
}public static final class II /* A.B.II*/ {
@org.jetbrains.annotations.NotNull()
public static final A.B.II INSTANCE;
private D() { /* compiled code */ }
private II();// .ctor()
public static final class G {
@org.jetbrains.annotations.NotNull
public static final A.C.D.G INSTANCE;
}}public static final class C /* A.C*/ {
@org.jetbrains.annotations.NotNull()
public static final A.C INSTANCE;
private G() { /* compiled code */ }
}
}
}
}
private C();// .ctor()
public static final class D /* A.C.D*/ {
@org.jetbrains.annotations.NotNull()
public static final A.C.D INSTANCE;
private D();// .ctor()
public static final class G /* A.C.D.G*/ {
@org.jetbrains.annotations.NotNull()
public static final A.C.D.G INSTANCE;
private G();// .ctor()
}}}}