Files
strangepleasures 9688c3e761 [KAPT] Improve stub formatting; check raw stubs in tests
Merge-request: KT-MR-14244
Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
2024-02-09 15:41:37 +00:00

369 lines
7.3 KiB
Plaintext
Vendored

/**
* public final class A : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // signature: f1(LA;LA$B;)LA;
* public final fun f1(a: A, b: A.B): A?
*
* // field: x:LA;
* // getter: getX()LA;
* public final val x: A?
* public final get
*
* // nested class: B
*
* // nested class: C
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class A {
@org.jetbrains.annotations.Nullable()
private final A x = null;
public A() {
super();
}
@org.jetbrains.annotations.Nullable()
public final A getX() {
return null;
}
@org.jetbrains.annotations.Nullable()
public final A f1(@org.jetbrains.annotations.NotNull() A a, @org.jetbrains.annotations.NotNull() A.B b) {
return null;
}
/**
* public abstract interface A.B : kotlin/Any {
*
* // signature: f2(LA$B$A;LA$B;)LA$B$A;
* public open fun f2(a: A.B.A, b: A.B): A.B.A?
*
* // getter: getY()LA$B;
* public abstract val y: A.B?
* public abstract get
*
* // nested class: A
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static abstract interface B {
@org.jetbrains.annotations.Nullable()
public abstract A.B getY();
}
/**
* public final object A.C : kotlin/Any {
*
* // signature: <init>()V
* private constructor()
*
* // nested class: C
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class C {
@org.jetbrains.annotations.NotNull()
public static final A.C INSTANCE = null;
private C() {
super();
}
}
}
////////////////////
/**
* public final class A2 : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: B
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class A2 {
public A2() {
super();
}
/**
* public final class A2.B : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: C
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class B {
public B() {
super();
}
/**
* public final class A2.B.C : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: D
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class C {
public C() {
super();
}
/**
* public final class A2.B.C.D : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: A2
*
* // nested class: B
*
* // nested class: Cme
*
* // nested class: D
*
* // nested class: E
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class D {
public D() {
super();
}
/**
* public final class A2.B.C.D.Cme : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class Cme {
public Cme() {
super();
}
}
/**
* public final class A2.B.C.D.E : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class E {
public E() {
super();
}
}
}
}
}
}
////////////////////
/**
* public final class Foo : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // companion object: Foo
*
* // nested class: Foo
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class Foo {
public Foo() {
super();
}
}
////////////////////
/**
* public final class Test : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: Nested
*
* // nested class: Inner
*
* // nested class: NestedObject
*
* // nested class: NestedInterface
*
* // nested class: NestedEnum
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class Test {
public Test() {
super();
}
/**
* public final class Test.Nested : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // nested class: NestedNested
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class Nested {
public Nested() {
super();
}
/**
* public final class Test.Nested.NestedNested : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class NestedNested {
public NestedNested() {
super();
}
}
}
/**
* public final inner class Test.Inner : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class Inner {
public Inner() {
super();
}
}
/**
* public final object Test.NestedObject : kotlin/Any {
*
* // signature: <init>()V
* private constructor()
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static final class NestedObject {
@org.jetbrains.annotations.NotNull()
public static final Test.NestedObject INSTANCE = null;
private NestedObject() {
super();
}
}
/**
* public abstract interface Test.NestedInterface : kotlin/Any {
*
* // module name: main
* }
*/
@kotlin.Metadata()
public static abstract interface NestedInterface {
}
/**
* public final enum class Test.NestedEnum : kotlin/Enum<Test.NestedEnum> {
*
* // signature: <init>(Ljava/lang/String;I)V
* private constructor()
*
* BLACK,
*
* WHITE,
*
* // module name: main
*
* // has Enum.entries
* }
*/
@kotlin.Metadata()
public static enum NestedEnum {
BLACK,
WHITE;
NestedEnum() {
}
@org.jetbrains.annotations.NotNull()
public static kotlin.enums.EnumEntries<Test.NestedEnum> getEntries() {
return null;
}
}
}