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.
62 lines
1.6 KiB
Plaintext
Vendored
62 lines
1.6 KiB
Plaintext
Vendored
import java.lang.System;
|
|
|
|
@kotlin.Metadata()
|
|
public final class Outer {
|
|
|
|
public final void nonAbstract(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String s, int i) {
|
|
}
|
|
|
|
public Outer() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
final class Inner {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String foo = null;
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String bar = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getFoo() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getBar() {
|
|
return null;
|
|
}
|
|
|
|
public Inner(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String foo, @org.jetbrains.annotations.NotNull()
|
|
java.lang.String bar) {
|
|
super();
|
|
}
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
static final class Nested {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String foo = null;
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String bar = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getFoo() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getBar() {
|
|
return null;
|
|
}
|
|
|
|
public Nested(@org.jetbrains.annotations.NotNull()
|
|
java.lang.String foo, @org.jetbrains.annotations.NotNull()
|
|
java.lang.String bar) {
|
|
super();
|
|
}
|
|
}
|
|
}
|