Update LightAnalysisModeCodegenTests for Kotlin 1.1
This commit is contained in:
+92
@@ -0,0 +1,92 @@
|
||||
public final class CreateInstanceKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
private final static method test(): void
|
||||
private final static method testFail(): void
|
||||
}
|
||||
|
||||
|
||||
public final class DefaultPrimaryAndDefaultSecondary {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
public method <init>(): void
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public method <init>(p0: int): void
|
||||
public synthetic method <init>(p0: int, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class NoArgAndDefault {
|
||||
public method <init>(): void
|
||||
public method <init>(p0: int): void
|
||||
public synthetic method <init>(p0: int, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
}
|
||||
|
||||
|
||||
public final class NoNoArgConstructor {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public method <init>(p0: int): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Object {
|
||||
public final static field INSTANCE: Object
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class PrimaryWithDefaults {
|
||||
private final @org.jetbrains.annotations.NotNull field d1: java.lang.String
|
||||
private final field d2: int
|
||||
public method <init>(): void
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: int, p3: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final @org.jetbrains.annotations.NotNull method getD1(): java.lang.String
|
||||
public final method getD2(): int
|
||||
}
|
||||
|
||||
|
||||
public final class PrivateConstructor {
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class Secondary {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
public method <init>(): void
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SecondaryWithDefaults {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public method <init>(p0: int): void
|
||||
public synthetic method <init>(p0: int, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SecondaryWithDefaultsNoPrimary {
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public method <init>(p0: int): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
}
|
||||
|
||||
|
||||
public final class SeveralDefaultSecondaries {
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public method <init>(p0: double): void
|
||||
public synthetic method <init>(p0: double, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public method <init>(p0: int): void
|
||||
public synthetic method <init>(p0: int, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
}
|
||||
|
||||
|
||||
public final class Simple {
|
||||
public method <init>(): void
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
public class K {
|
||||
private final field privateKProp: kotlin.Unit
|
||||
private @org.jetbrains.annotations.NotNull field publicKProp: kotlin.Unit
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getPublicKProp(): kotlin.Unit
|
||||
private final method privateKFun(): void
|
||||
public method publicKFun(): void
|
||||
public final method setPublicKProp(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
}
|
||||
|
||||
|
||||
public final class KKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
private final static method test(p0: java.lang.String[]): void
|
||||
}
|
||||
|
||||
|
||||
public final class L {
|
||||
private field privateLProp: kotlin.Unit
|
||||
private final @org.jetbrains.annotations.NotNull field publicLProp: kotlin.Unit
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getPublicLProp(): kotlin.Unit
|
||||
private final method privateLFun(): void
|
||||
public final method publicLFun(): void
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
public final class DefaultTypeKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method genericIntString(): Generic
|
||||
public final static @org.jetbrains.annotations.NotNull method simple(): Simple
|
||||
}
|
||||
|
||||
|
||||
public final class Generic {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method thiz(): Generic
|
||||
}
|
||||
|
||||
|
||||
public final class Simple {
|
||||
public method <init>(): void
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public final class Foo {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class StarProjectedTypeKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
Reference in New Issue
Block a user