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.
67 lines
1.2 KiB
Plaintext
Vendored
67 lines
1.2 KiB
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface Intf {
|
|
public static final Intf.Companion Companion = null;
|
|
public static final int WHITE = 2;
|
|
|
|
public abstract int getColor();
|
|
|
|
@kotlin.Metadata()
|
|
public static final class DefaultImpls {
|
|
|
|
public DefaultImpls() {
|
|
super();
|
|
}
|
|
|
|
public static int getColor(Intf $this) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
private static final int BLACK = 1;
|
|
public static final int WHITE = 2;
|
|
|
|
public final int getBLACK() {
|
|
return 0;
|
|
}
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface IntfWithDefaultImpls {
|
|
|
|
public abstract void a();
|
|
|
|
@kotlin.Metadata()
|
|
public static final class DefaultImpls {
|
|
|
|
public DefaultImpls() {
|
|
super();
|
|
}
|
|
|
|
public static void a(IntfWithDefaultImpls $this) {
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public abstract interface IntfWithoutDefaultImpls {
|
|
}
|