Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/errorLocationMapping.txt
T
Yan Zhulanow b0e97de8a8 Kapt: Move line metadata to .kaptMetadata external files (KT-22386)
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.
2018-02-06 22:16:00 +03:00

156 lines
3.2 KiB
Plaintext
Vendored

import kotlin.reflect.KClass;
@kotlin.Metadata()
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Anno {
public abstract java.lang.Class<java.lang.Object> a();
}
////////////////////
import kotlin.reflect.KClass;
@kotlin.Metadata()
@Anno(a = ABC.class)
public final class ErrorInAnnotation {
public ErrorInAnnotation() {
super();
}
}
////////////////////
import kotlin.reflect.KClass;
@kotlin.Metadata()
public final class ErrorInConstructorParameter {
@org.jetbrains.annotations.NotNull()
private final java.lang.String a = null;
@org.jetbrains.annotations.NotNull()
private final ABC b = null;
@org.jetbrains.annotations.NotNull()
private final java.util.List<ABC> c = null;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getA() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC getB() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<ABC> getC() {
return null;
}
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
java.lang.String a, @org.jetbrains.annotations.NotNull()
ABC b, @org.jetbrains.annotations.NotNull()
java.util.List<? extends ABC> c) {
super();
}
}
////////////////////
import kotlin.reflect.KClass;
@kotlin.Metadata()
public final class ErrorInDeclarations {
@org.jetbrains.annotations.NotNull()
public java.lang.String p1;
@org.jetbrains.annotations.NotNull()
public ABC p2;
@org.jetbrains.annotations.NotNull()
public BCD<java.lang.String> p3;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getP1() {
return null;
}
public final void setP1(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC getP2() {
return null;
}
public final void setP2(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
@org.jetbrains.annotations.NotNull()
public final BCD<java.lang.String> getP3() {
return null;
}
public final void setP3(@org.jetbrains.annotations.NotNull()
BCD<java.lang.String> p0) {
}
public final void overloads(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
}
public final void overloads(@org.jetbrains.annotations.NotNull()
ABC a) {
}
public final void f1(@org.jetbrains.annotations.NotNull()
java.lang.String a, @org.jetbrains.annotations.NotNull()
ABC<java.util.List<java.lang.String>> b) {
}
public final <T extends java.lang.String>void f2() {
}
public final <T extends java.lang.Object>void f3() {
}
@org.jetbrains.annotations.Nullable()
public final ABC f4() {
return null;
}
public ErrorInDeclarations() {
super();
}
}
////////////////////
import kotlin.reflect.KClass;
@kotlin.Metadata()
public final class ErrorInSupertype {
public ErrorInSupertype() {
super();
}
}
////////////////////
import kotlin.reflect.KClass;
@kotlin.Metadata()
public final class ErrorInSupertype2 {
public ErrorInSupertype2() {
super();
}
}