Kapt: remove old JVM backend test data (1/2)

In this commit, .txt expectation test data files for the old JVM backend
are deleted.

 #KT-64680
This commit is contained in:
Alexander Udalov
2024-01-02 17:22:47 +01:00
committed by Space Team
parent e4a608c6e7
commit 9c67616b25
63 changed files with 0 additions and 10417 deletions
@@ -1,38 +0,0 @@
package error;
public final class NonExistentClass {
}
////////////////////
package test;
@Anno()
@kotlin.Metadata()
public final class User {
@org.jetbrains.annotations.NotNull()
private final java.lang.String name = "John";
public User() {
super();
}
public User(@org.jetbrains.annotations.NotNull()
java.lang.String name, int age) {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getName() {
return null;
}
}
////////////////////
package test;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@kotlin.Metadata()
public abstract @interface Anno {
}
@@ -1,63 +0,0 @@
package error;
public final class NonExistentClass {
}
////////////////////
package test;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@kotlin.Metadata()
public abstract @interface MyAnnotation {
}
////////////////////
package test;
@kotlin.Metadata()
public final class Simple {
@org.jetbrains.annotations.NotNull()
public static final test.Simple.Companion Companion = null;
public Simple() {
super();
}
@MyAnnotation()
public final void myMethod() {
}
@kotlin.Metadata()
public static final class NestedClass {
public NestedClass() {
super();
}
@kotlin.Metadata()
public static final class NestedNestedClass {
public NestedNestedClass() {
super();
}
}
}
@kotlin.Metadata()
public final class InnerClass {
public InnerClass() {
super();
}
}
@kotlin.Metadata()
public static final class Companion {
private Companion() {
super();
}
}
}
@@ -1,64 +0,0 @@
package error;
public final class NonExistentClass {
}
////////////////////
package test;
/**
* KDoc comment.
*/
@kotlin.Metadata()
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
public final class Simple {
public Simple() {
super();
}
@MyAnnotation()
public final void myMethod() {
}
public final int heavyMethod() {
return 0;
}
}
////////////////////
package test;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@kotlin.Metadata()
public abstract @interface MyAnnotation {
}
////////////////////
package test;
@kotlin.Metadata()
public enum EnumClass {
/*public static final*/ BLACK /* = new BLACK() */,
/*public static final*/ WHITE /* = new WHITE() */;
EnumClass() {
}
}
////////////////////
package test;
@kotlin.Metadata()
public enum EnumClass2 {
/*public static final*/ WHITE /* = new WHITE(null) */,
/*public static final*/ RED /* = new RED(null) */;
private final java.lang.String blah = null;
EnumClass2(java.lang.String blah) {
}
}