[SLC] AbstractSymbolLightClassesByPsiTest: add more stable order
Now more diff between sources and libraries are readable. Also prefer .descriptors to .fir as FIR is a first-class support ^KT-62892
This commit is contained in:
committed by
Space Team
parent
d64f18eaa9
commit
af5f76048b
+21
-18
@@ -8,57 +8,60 @@ public enum Em /* Em*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static Em[] values();// values()
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static kotlin.enums.EnumEntries<Em> getEntries();// getEntries()
|
||||
|
||||
private Em();// .ctor()
|
||||
}
|
||||
|
||||
public final class Foo /* Foo*/ {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em em;
|
||||
private final Em em = Em.BAR /* initializer type: Em */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final Em[] emarr;
|
||||
private final Em[] emarr = {Em.FOO, Em.BAR} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final double[] darr;
|
||||
private final double[] darr = {7.3} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final int[] iarr;
|
||||
private final int[] iarr = {1, 2, 3} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?> cl;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.Class<?>[] clarr;
|
||||
private final java.lang.Class<?>[] clarr = {} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String s;
|
||||
private final java.lang.String s = "foo" /* initializer type: java.lang.String */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String[] empty;
|
||||
private final java.lang.String[] empty = {} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final java.lang.String[] sarr;
|
||||
private final java.lang.String[] sarr = {"a", "bc"} /* initializer type: null */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
private final long[] larr;
|
||||
private final long[] larr = {-1L, 0L, 1L} /* initializer type: null */;
|
||||
|
||||
private final boolean z;
|
||||
private final boolean z = true /* initializer type: boolean */;
|
||||
|
||||
private final byte b;
|
||||
private final byte b = 1 /* initializer type: int */;
|
||||
|
||||
private final char c2;
|
||||
private final char c = 'c' /* initializer type: char */;
|
||||
|
||||
private final char c;
|
||||
private final char c2 = '\n' /* initializer type: char */;
|
||||
|
||||
private final double d;
|
||||
private final double d = -1.0 /* initializer type: double */;
|
||||
|
||||
private final float f;
|
||||
private final float f = 1.0f /* initializer type: float */;
|
||||
|
||||
private final int i;
|
||||
private final int i = 10 /* initializer type: int */;
|
||||
|
||||
private final long l;
|
||||
private final long l = -10L /* initializer type: long */;
|
||||
|
||||
private final short sh;
|
||||
private final short sh = 10 /* initializer type: int */;
|
||||
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final Em getEm();// getEm()
|
||||
|
||||
Reference in New Issue
Block a user