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,117 +0,0 @@
/**
* public final data class User : kotlin/Any {
*
* // signature: <init>(Ljava/lang/String;Ljava/lang/String;I)V
* public constructor(firstName: kotlin/String, secondName: kotlin/String, age: kotlin/Int)
*
* // signature: component1()Ljava/lang/String;
* public final (* synthesized *) operator fun component1(): kotlin/String
*
* // signature: component2()Ljava/lang/String;
* public final (* synthesized *) operator fun component2(): kotlin/String
*
* // signature: component3()I
* public final (* synthesized *) operator fun component3(): kotlin/Int
*
* // signature: copy(Ljava/lang/String;Ljava/lang/String;I)LUser;
* public final (* synthesized *) fun copy(firstName: kotlin/String (* = ... *), secondName: kotlin/String (* = ... *), age: kotlin/Int (* = ... *)): User
*
* // signature: equals(Ljava/lang/Object;)Z
* public open (* synthesized *) operator fun equals(other: kotlin/Any?): kotlin/Boolean
*
* // signature: hashCode()I
* public open (* synthesized *) fun hashCode(): kotlin/Int
*
* // signature: procedure()V
* public final fun procedure(): kotlin/Unit
*
* // signature: toString()Ljava/lang/String;
* public open (* synthesized *) fun toString(): kotlin/String
*
* // field: age:I
* // getter: getAge()I
* public final val age: kotlin/Int
* public final get
*
* // field: firstName:Ljava/lang/String;
* // getter: getFirstName()Ljava/lang/String;
* public final val firstName: kotlin/String
* public final get
*
* // field: secondName:Ljava/lang/String;
* // getter: getSecondName()Ljava/lang/String;
* public final val secondName: kotlin/String
* public final get
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class User {
@org.jetbrains.annotations.NotNull()
private final java.lang.String firstName = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String secondName = null;
private final int age = 0;
@org.jetbrains.annotations.NotNull()
public final User copy(@org.jetbrains.annotations.NotNull()
java.lang.String firstName, @org.jetbrains.annotations.NotNull()
java.lang.String secondName, int age) {
return null;
}
@java.lang.Override()
public boolean equals(@org.jetbrains.annotations.Nullable()
java.lang.Object other) {
return false;
}
@java.lang.Override()
public int hashCode() {
return 0;
}
@java.lang.Override()
@org.jetbrains.annotations.NotNull()
public java.lang.String toString() {
return null;
}
public User(@org.jetbrains.annotations.NotNull()
java.lang.String firstName, @org.jetbrains.annotations.NotNull()
java.lang.String secondName, int age) {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String component1() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFirstName() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String component2() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getSecondName() {
return null;
}
public final int component3() {
return 0;
}
public final int getAge() {
return 0;
}
public final void procedure() {
}
}