Update lightclass tests renderer
+mute invalid old light classes tests
This commit is contained in:
+18
-17
@@ -1,25 +1,26 @@
|
||||
@test.AllOpen
|
||||
public class C {
|
||||
private final int p;
|
||||
@test.AllOpen()
|
||||
public class C /* test.C*/ {
|
||||
private final int p;
|
||||
|
||||
public void f() { /* compiled code */ }
|
||||
public C();// .ctor()
|
||||
|
||||
public void g() { /* compiled code */ }
|
||||
public int getP();// getP()
|
||||
|
||||
public int getP() { /* compiled code */ }
|
||||
public void f();// f()
|
||||
|
||||
public C() { /* compiled code */ }
|
||||
public void g();// g()
|
||||
|
||||
public static final class D {
|
||||
public final void z() { /* compiled code */ }
|
||||
|
||||
public D() { /* compiled code */ }
|
||||
}
|
||||
|
||||
@test.AllOpen
|
||||
public static class H {
|
||||
public void j() { /* compiled code */ }
|
||||
@test.AllOpen()
|
||||
public static class H /* test.C.H*/ {
|
||||
public H();// .ctor()
|
||||
|
||||
public H() { /* compiled code */ }
|
||||
}
|
||||
}
|
||||
public void j();// j()
|
||||
|
||||
}public static final class D /* test.C.D*/ {
|
||||
public D();// .ctor()
|
||||
|
||||
public final void z();// z()
|
||||
|
||||
}}
|
||||
+23
-24
@@ -1,38 +1,37 @@
|
||||
public final class Container {
|
||||
public Container() { /* compiled code */ }
|
||||
public final class Container /* p1.Container*/ {
|
||||
public Container();// .ctor()
|
||||
|
||||
public static final class MyString implements java.lang.CharSequence {
|
||||
public int getLength() { /* compiled code */ }
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public error.NonExistentClass chars() { /* compiled code */ }
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public error.NonExistentClass codePoints() { /* compiled code */ }
|
||||
public static final class MyNumber /* p1.Container.MyNumber*/ extends java.lang.Number {
|
||||
public MyNumber();// .ctor()
|
||||
|
||||
public char get(int index) { /* compiled code */ }
|
||||
public byte toByte();// toByte()
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public java.lang.CharSequence subSequence(int startIndex, int endIndex) { /* compiled code */ }
|
||||
public char toChar();// toChar()
|
||||
|
||||
public MyString() { /* compiled code */ }
|
||||
}
|
||||
public double toDouble();// toDouble()
|
||||
|
||||
public static final class MyNumber extends java.lang.Number {
|
||||
public byte toByte() { /* compiled code */ }
|
||||
public float toFloat();// toFloat()
|
||||
|
||||
public char toChar() { /* compiled code */ }
|
||||
public int toInt();// toInt()
|
||||
|
||||
public double toDouble() { /* compiled code */ }
|
||||
public long toLong();// toLong()
|
||||
|
||||
public float toFloat() { /* compiled code */ }
|
||||
public short toShort();// toShort()
|
||||
|
||||
public int toInt() { /* compiled code */ }
|
||||
}public static final class MyString /* p1.Container.MyString*/ implements java.lang.CharSequence {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public java.lang.CharSequence subSequence(int, int);// subSequence(int, int)
|
||||
|
||||
public long toLong() { /* compiled code */ }
|
||||
public MyString();// .ctor()
|
||||
|
||||
public short toShort() { /* compiled code */ }
|
||||
public char get(int);// get(int)
|
||||
|
||||
public MyNumber() { /* compiled code */ }
|
||||
}
|
||||
}
|
||||
public error.NonExistentClass chars();// chars()
|
||||
|
||||
public error.NonExistentClass codePoints();// codePoints()
|
||||
|
||||
public int getLength();// getLength()
|
||||
|
||||
}}
|
||||
@@ -1,5 +1,6 @@
|
||||
public final class TypeHierarchyMap <TValue> implements java.util.Map<java.lang.Class<?>,TValue>, kotlin.collections.Map<java.lang.Class<?>,TValue>, kotlin.jvm.internal.markers.KMappedMarker {
|
||||
public boolean containsKey(@org.jetbrains.annotations.NotNull java.lang.Class<?> key) { /* compiled code */ }
|
||||
public final class TypeHierarchyMap /* p1.TypeHierarchyMap*/<TValue> implements java.util.Map<java.lang.Class<?>,TValue>, kotlin.collections.Map<java.lang.Class<?>,TValue>, kotlin.jvm.internal.markers.KMappedMarker {
|
||||
public TypeHierarchyMap();// .ctor()
|
||||
|
||||
public boolean containsKey(@org.jetbrains.annotations.NotNull() java.lang.Class<?>);// containsKey(java.lang.Class<?>)
|
||||
|
||||
public TypeHierarchyMap() { /* compiled code */ }
|
||||
}
|
||||
+33
-29
@@ -1,40 +1,44 @@
|
||||
public final class SmartSet <T> extends kotlin.collections.AbstractSet<T> implements java.util.Set<T>, kotlin.collections.MutableSet<T>, kotlin.jvm.internal.markers.KMutableSet {
|
||||
private java.lang.Object data;
|
||||
private int size;
|
||||
private static final int ARRAY_THRESHOLD;
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public static final SmartSet.Companion Companion;
|
||||
public final class SmartSet /* SmartSet*/<T> extends kotlin.collections.AbstractSet<T> implements java.util.Set<T>, kotlin.collections.MutableSet<T>, kotlin.jvm.internal.markers.KMutableSet {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final SmartSet.Companion Companion;
|
||||
|
||||
public int getSize() { /* compiled code */ }
|
||||
private int size;
|
||||
|
||||
public void setSize(int i) { /* compiled code */ }
|
||||
private java.lang.Object data;
|
||||
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public java.util.Iterator<T> iterator() { /* compiled code */ }
|
||||
private static final int ARRAY_THRESHOLD;
|
||||
|
||||
public boolean add(T element) { /* compiled code */ }
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final <T> SmartSet<T> create();// <T> create()
|
||||
|
||||
public void clear() { /* compiled code */ }
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull() java.util.Collection<? extends T>);// <T> create(java.util.Collection<? extends T>)
|
||||
|
||||
private SmartSet() { /* compiled code */ }
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public java.util.Iterator<T> iterator();// iterator()
|
||||
|
||||
@kotlin.jvm.JvmStatic
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public static final <T> SmartSet<T> create() { /* compiled code */ }
|
||||
private SmartSet();// .ctor()
|
||||
|
||||
@kotlin.jvm.JvmStatic
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public static final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull java.util.Collection<? extends T> set) { /* compiled code */ }
|
||||
public boolean add(T);// add(T)
|
||||
|
||||
public static final class Companion {
|
||||
@kotlin.jvm.JvmStatic
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public final <T> SmartSet<T> create() { /* compiled code */ }
|
||||
public int getSize();// getSize()
|
||||
|
||||
@kotlin.jvm.JvmStatic
|
||||
@org.jetbrains.annotations.NotNull
|
||||
public final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull java.util.Collection<? extends T> set) { /* compiled code */ }
|
||||
public void clear();// clear()
|
||||
|
||||
private Companion() { /* compiled code */ }
|
||||
}
|
||||
}
|
||||
public void setSize(int);// setSize(int)
|
||||
|
||||
|
||||
public static final class Companion /* SmartSet.Companion*/ {
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final <T> SmartSet<T> create();// <T> create()
|
||||
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final <T> SmartSet<T> create(@org.jetbrains.annotations.NotNull() java.util.Collection<? extends T>);// <T> create(java.util.Collection<? extends T>)
|
||||
|
||||
private Companion();// .ctor()
|
||||
|
||||
}}
|
||||
+5
-4
@@ -1,7 +1,8 @@
|
||||
public final class Inheritor implements p.I, p.I2 {
|
||||
public final void f() { /* compiled code */ }
|
||||
public final class Inheritor /* p.Inheritor*/ implements p.I, p.I2 {
|
||||
public Inheritor();// .ctor()
|
||||
|
||||
public void g() { /* compiled code */ }
|
||||
public final void f();// f()
|
||||
|
||||
public void g();// g()
|
||||
|
||||
public Inheritor() { /* compiled code */ }
|
||||
}
|
||||
+6
-5
@@ -1,7 +1,8 @@
|
||||
public final class C extends p.A {
|
||||
public int getAp$light_idea_test_case() { /* compiled code */ }
|
||||
public final class C /* p.C*/ extends p.A {
|
||||
public C();// .ctor()
|
||||
|
||||
public int af$light_idea_test_case() { /* compiled code */ }
|
||||
public int af();// af$light_idea_test_case()
|
||||
|
||||
public C() { /* compiled code */ }
|
||||
}
|
||||
public int getAp();// getAp$light_idea_test_case()
|
||||
|
||||
}
|
||||
+8
-7
@@ -1,13 +1,14 @@
|
||||
public final class C extends p.A implements p.I {
|
||||
private final int ip;
|
||||
public final class C /* p.C*/ extends p.A implements p.I {
|
||||
private final int ip;
|
||||
|
||||
public int getAp$light_idea_test_case() { /* compiled code */ }
|
||||
public C();// .ctor()
|
||||
|
||||
public int af$light_idea_test_case() { /* compiled code */ }
|
||||
public int <no name provided>$light_idea_test_case();// <no name provided>$light_idea_test_case()
|
||||
|
||||
public int getIp$light_idea_test_case() { /* compiled code */ }
|
||||
public int af$light_idea_test_case();// af$light_idea_test_case()
|
||||
|
||||
public int $$<no name provided>$light_idea_test_case /* Real name is '<no name provided>$light_idea_test_case' */() { /* compiled code */ }
|
||||
public int getAp$light_idea_test_case();// getAp$light_idea_test_case()
|
||||
|
||||
public int getIp$light_idea_test_case();// getIp$light_idea_test_case()
|
||||
|
||||
public C() { /* compiled code */ }
|
||||
}
|
||||
+6
-5
@@ -1,7 +1,8 @@
|
||||
public final class C extends p.A {
|
||||
protected int getAp() { /* compiled code */ }
|
||||
public final class C /* p.C*/ extends p.A {
|
||||
protected int af();// af()
|
||||
|
||||
protected int af() { /* compiled code */ }
|
||||
protected int getAp();// getAp()
|
||||
|
||||
public C() { /* compiled code */ }
|
||||
}
|
||||
public C();// .ctor()
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user