[LC] AbstractSymbolLightClassesLoadingTest: sort classes by name

This commit is contained in:
Dmitrii Gridin
2022-12-22 20:02:07 +01:00
committed by teamcity
parent 27ffe7c31e
commit 7196d0d809
49 changed files with 1067 additions and 1367 deletions
@@ -1,38 +1,3 @@
public final class ClassWithPrivateCtor /* ClassWithPrivateCtor*/ {
@org.jetbrains.annotations.NotNull()
private final java.util.Set<java.lang.Integer> property;
@org.jetbrains.annotations.NotNull()
public final java.util.Set<java.lang.Integer> getProperty();// getProperty()
private ClassWithPrivateCtor(java.util.Set<java.lang.Integer>);// .ctor(java.util.Set<java.lang.Integer>)
}
public final class B /* B*/ {
}
public final class AAA /* AAA*/ {
public AAA(@org.jetbrains.annotations.NotNull() int[], @org.jetbrains.annotations.NotNull() kotlin.jvm.functions.Function0<kotlin.Unit>);// .ctor(int[], kotlin.jvm.functions.Function0<kotlin.Unit>)
}
public final class Outer /* Outer*/ {
public Outer();// .ctor()
class Inner ...
class Nested ...
}
public final class Inner /* Outer.Inner*/ {
public Inner(int, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(int, java.lang.String)
}
public static final class Nested /* Outer.Nested*/ {
public Nested();// .ctor()
public Nested(int, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(int, java.lang.String)
}
public abstract class A /* A*/ {
@org.jetbrains.annotations.Nullable()
private final java.lang.String x;
@@ -45,10 +10,45 @@ public abstract class A /* A*/ {
class C ...
}
public final class AAA /* AAA*/ {
public AAA(@org.jetbrains.annotations.NotNull() int[], @org.jetbrains.annotations.NotNull() kotlin.jvm.functions.Function0<kotlin.Unit>);// .ctor(int[], kotlin.jvm.functions.Function0<kotlin.Unit>)
}
public final class B /* B*/ {
}
public static final class C /* A.C*/ extends A {
public C();// .ctor()
}
public final class ClassWithPrivateCtor /* ClassWithPrivateCtor*/ {
@org.jetbrains.annotations.NotNull()
private final java.util.Set<java.lang.Integer> property;
@org.jetbrains.annotations.NotNull()
public final java.util.Set<java.lang.Integer> getProperty();// getProperty()
private ClassWithPrivateCtor(java.util.Set<java.lang.Integer>);// .ctor(java.util.Set<java.lang.Integer>)
}
public final class Inner /* Outer.Inner*/ {
public Inner(int, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(int, java.lang.String)
}
public static final class Nested /* Outer.Nested*/ {
public Nested();// .ctor()
public Nested(int, @org.jetbrains.annotations.NotNull() java.lang.String);// .ctor(int, java.lang.String)
}
public final class Outer /* Outer*/ {
public Outer();// .ctor()
class Inner ...
class Nested ...
}
public final class TestConstructor /* TestConstructor*/ {
private TestConstructor(int);// .ctor(int)
}