Update LightAnalysisModeCodegenTests for Kotlin 1.1
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
public abstract class AbstractClass {
|
||||
private final @org.jetbrains.annotations.NotNull field finalVal: kotlin.Unit
|
||||
private final @org.jetbrains.annotations.NotNull field openVal: kotlin.Unit
|
||||
public method <init>(): void
|
||||
public abstract @org.jetbrains.annotations.NotNull method getAbstractVar(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getFinalVal(): kotlin.Unit
|
||||
public @org.jetbrains.annotations.NotNull method getOpenVal(): kotlin.Unit
|
||||
public abstract method setAbstractVar(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
}
|
||||
|
||||
|
||||
public final class CallableModalityKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Interface {
|
||||
inner class Interface/DefaultImpls
|
||||
public abstract method abstractFun(): void
|
||||
public abstract method openFun(): void
|
||||
}
|
||||
|
||||
|
||||
public final class Interface/DefaultImpls {
|
||||
inner class Interface/DefaultImpls
|
||||
public static method openFun(p0: Interface): void
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
public final class CallableVisibilityKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class Foo {
|
||||
private final @org.jetbrains.annotations.NotNull field internalVal: kotlin.Unit
|
||||
private final field privateToThisVal: java.lang.Object
|
||||
private final field privateVal: kotlin.Unit
|
||||
private final @org.jetbrains.annotations.NotNull field protectedVar: kotlin.Unit
|
||||
private final @org.jetbrains.annotations.NotNull field publicVal: kotlin.Unit
|
||||
private @org.jetbrains.annotations.NotNull field publicVarPrivateSetter: kotlin.Unit
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getInternalVal$test_module(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getPrivateFun(): kotlin.reflect.KFunction
|
||||
public final @org.jetbrains.annotations.NotNull method getPrivateToThisFun(): kotlin.reflect.KFunction
|
||||
public final @org.jetbrains.annotations.NotNull method getPrivateToThisVal(): kotlin.reflect.KProperty
|
||||
public final @org.jetbrains.annotations.NotNull method getPrivateVal(): kotlin.reflect.KProperty0
|
||||
public final @org.jetbrains.annotations.NotNull method getProtectedFun(): kotlin.reflect.KFunction
|
||||
protected final @org.jetbrains.annotations.NotNull method getProtectedVar(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getProtectedVar(): kotlin.reflect.KProperty0
|
||||
public final @org.jetbrains.annotations.NotNull method getPublicVal(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getPublicVarPrivateSetter(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getPublicVarPrivateSetter(): kotlin.reflect.KMutableProperty0
|
||||
public final method internalFun$test_module(): void
|
||||
private final method privateFun(): void
|
||||
private final method privateToThisFun(): java.lang.Object
|
||||
protected final method protectedFun(): void
|
||||
public final method publicFun(): void
|
||||
private final method setPublicVarPrivateSetter(p0: kotlin.Unit): void
|
||||
}
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
public abstract class AbstractClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
@java.lang.annotation.Retention
|
||||
public annotation class AnnotationClass
|
||||
|
||||
|
||||
public final class ClassModalityKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public enum class EnumClass {
|
||||
protected method <init>(p0: java.lang.String, p1: int): void
|
||||
public static method valueOf(p0: java.lang.String): EnumClass
|
||||
public static method values(): EnumClass[]
|
||||
}
|
||||
|
||||
|
||||
public abstract enum class EnumClassWithAbstractMember {
|
||||
protected method <init>(p0: java.lang.String, p1: int): void
|
||||
public abstract method foo(): void
|
||||
public static method valueOf(p0: java.lang.String): EnumClassWithAbstractMember
|
||||
public static method values(): EnumClassWithAbstractMember[]
|
||||
}
|
||||
|
||||
|
||||
public final class FinalClass {
|
||||
public final static field Companion: FinalClass.Companion
|
||||
inner class FinalClass/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class FinalClass/Companion {
|
||||
inner class FinalClass/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public interface Interface
|
||||
|
||||
|
||||
public final class Object {
|
||||
public final static field INSTANCE: Object
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public class OpenClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
public final class ClassVisibilityKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class DefaultVisibilityClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class InternalClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
final class PrivateClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class PublicClass {
|
||||
inner class PublicClass/ProtectedClass
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getProtectedClass(): kotlin.reflect.KClass
|
||||
}
|
||||
|
||||
|
||||
protected final static class PublicClass/ProtectedClass {
|
||||
inner class PublicClass/ProtectedClass
|
||||
public method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
public final class ClassesKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public abstract class S {
|
||||
public final static field Companion: S.Companion
|
||||
inner class S/Companion
|
||||
inner class S/DataClass
|
||||
inner class S/InnerClass
|
||||
inner class S/NonCompanionObject
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class S/Companion {
|
||||
inner class S/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class S/DataClass {
|
||||
private final field x: int
|
||||
inner class S/DataClass
|
||||
public method <init>(p0: int): void
|
||||
public final method component1(): int
|
||||
public synthetic static method copy$default(p0: S.DataClass, p1: int, p2: int, p3: java.lang.Object): S.DataClass
|
||||
public final @org.jetbrains.annotations.NotNull method copy(p0: int): S.DataClass
|
||||
public method equals(p0: java.lang.Object): boolean
|
||||
public final method getX(): int
|
||||
public method hashCode(): int
|
||||
public method toString(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class S/InnerClass {
|
||||
synthetic final field this$0: S
|
||||
inner class S/InnerClass
|
||||
public method <init>(p0: S): void
|
||||
}
|
||||
|
||||
|
||||
public final class S/NonCompanionObject {
|
||||
public final static field INSTANCE: S.NonCompanionObject
|
||||
inner class S/NonCompanionObject
|
||||
private method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
public final class External {
|
||||
public method <init>(): void
|
||||
public final method external(): void
|
||||
}
|
||||
|
||||
|
||||
public final class FunctionsKt {
|
||||
private final static @org.jetbrains.annotations.NotNull field externalGetter: kotlin.Unit
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getExternalGetter(): kotlin.Unit
|
||||
public final static @org.jetbrains.annotations.NotNull method getInlineProperty(): kotlin.Unit
|
||||
public final static method infix(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.Unit): void
|
||||
public final static method inline(): void
|
||||
public final static method invoke(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
public final static method setInlineProperty(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public final class KKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class ParametersKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1, @org.jetbrains.annotations.NotNull p2: kotlin.Unit[]): void
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public final class A {
|
||||
public @org.jetbrains.annotations.NotNull field lateinit: kotlin.Unit
|
||||
private @org.jetbrains.annotations.NotNull field nonLateinit: kotlin.Unit
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getLateinit(): kotlin.Unit
|
||||
public final @org.jetbrains.annotations.NotNull method getNonLateinit(): kotlin.Unit
|
||||
public final method setLateinit(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
public final method setNonLateinit(@org.jetbrains.annotations.NotNull p0: kotlin.Unit): void
|
||||
}
|
||||
|
||||
|
||||
public final class PropertiesKt {
|
||||
public final static @org.jetbrains.annotations.NotNull field const: java.lang.String
|
||||
private final static @org.jetbrains.annotations.NotNull field nonConst: java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getNonConst(): java.lang.String
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public final class A {
|
||||
public method <init>(): void
|
||||
public final method nonReified(): java.lang.Object
|
||||
private final method reified(): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class TypeParametersKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
Reference in New Issue
Block a user