Files
Alexander Udalov c251eb19a6 Kapt: remove old JVM backend test data (2/2)
In this commit, .ir.txt expectation test data files for the JVM IR
backend are renamed to .txt. This is done as two separate commits so
that Git would recognize that these files were logically moved, not that
the contents of the original .txt files were changed.

 #KT-64680
2024-01-03 19:37:40 +00:00

82 lines
2.2 KiB
Plaintext
Vendored

/**
* public final class Foo : kotlin/Any {
*
* // signature: <init>(Ljava/lang/String;)V
* public constructor(string: kotlin/String)
*
* // field: bar:LFoo$Bar;
* // getter: getBar()LFoo$Bar;
* public final val bar: Foo.Bar
* public final get
*
* // field: string:Ljava/lang/String;
* private final val string: kotlin/String
* private final get
*
* // nested class: Bar
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class Foo {
@org.jetbrains.annotations.NotNull()
private final java.lang.String string = null;
@org.jetbrains.annotations.NotNull()
private final Foo.Bar bar = null;
public Foo(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull()
public final Foo.Bar getBar() {
return null;
}
/**
* public final class Foo.Bar : kotlin/Any {
*
* // signature: <init>(Ljava/lang/String;)V
* public constructor(string: kotlin/String)
*
* // field: bars:Ljava/util/ArrayList;
* // getter: getBars()Ljava/util/ArrayList;
* public final val bars: java/util/ArrayList<Foo.Bar.Bar> (* = kotlin/collections/ArrayList^<Foo.Bar.Bar> *)
* public final get
*
* // field: string:Ljava/lang/String;
* // getter: getString()Ljava/lang/String;
* public final val string: kotlin/String
* public final get
*
* // nested class: Bar
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class Bar {
@org.jetbrains.annotations.NotNull()
private final java.lang.String string = null;
@org.jetbrains.annotations.NotNull()
private final java.util.ArrayList<Foo.Bar.Bar> bars = null;
public Bar(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getString() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.ArrayList<Foo.Bar.Bar> getBars() {
return null;
}
}
}