b0e97de8a8
Placing location table inside .java file triggers annotation processor to run on each line table modification (even when the stub declarations themselves are the same). So we move it to the separate file.
47 lines
904 B
Plaintext
Vendored
47 lines
904 B
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class JvmStaticTest {
|
|
private final byte three = (byte)3;
|
|
private final char d = 'D';
|
|
private static final int one = 1;
|
|
private static final int two = 2;
|
|
public static final char c = 'C';
|
|
public static final JvmStaticTest.Companion Companion = null;
|
|
|
|
public final byte getThree() {
|
|
return 0;
|
|
}
|
|
|
|
public final char getD() {
|
|
return '\u0000';
|
|
}
|
|
|
|
public JvmStaticTest() {
|
|
super();
|
|
}
|
|
|
|
public static final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
public static void one$annotations() {
|
|
}
|
|
|
|
public final int getOne() {
|
|
return 0;
|
|
}
|
|
|
|
public final int getTwo() {
|
|
return 0;
|
|
}
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
}
|
|
}
|