Update LightAnalysisModeCodegenTests for Kotlin 1.1
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
@kotlin.annotation.Target
|
||||
@kotlin.annotation.Retention
|
||||
@java.lang.annotation.Retention
|
||||
@java.lang.annotation.Target
|
||||
public annotation class Ann {
|
||||
public abstract method x(): int
|
||||
}
|
||||
|
||||
|
||||
public final class AnnotationsOnTypeAliasesKt {
|
||||
public final static method assertHasDeclaredMethodWithAnn(@org.jetbrains.annotations.NotNull p0: java.lang.Class): void
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+1
-1
@@ -2,7 +2,7 @@ public final class C {
|
||||
private synthetic final static field $$delegatedProperties: kotlin.reflect.KProperty[]
|
||||
private final @kotlin.jvm.Transient @org.jetbrains.annotations.NotNull field del$delegate: CustomDelegate
|
||||
private final @kotlin.jvm.Transient field tra: int
|
||||
private @kotlin.jvm.Volatile field vol: int
|
||||
private volatile @kotlin.jvm.Volatile field vol: int
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getDel(): java.lang.String
|
||||
public final method getTra(): int
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class ArraysAreCloneableKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.Cloneable): java.lang.Cloneable
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class BitwiseOpKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class BitwiseOpAnyKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class BitwiseOpNullableKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
-5
@@ -62,9 +62,4 @@ public final class Impl {
|
||||
public final method indexOf(p0: java.lang.Object): int
|
||||
public method lastIndexOf(p0: Content): int
|
||||
public final method lastIndexOf(p0: java.lang.Object): int
|
||||
public method remove(p0: Content): boolean
|
||||
public final method remove(p0: int): Content
|
||||
public final method remove(p0: java.lang.Object): boolean
|
||||
public method removeAt(p0: int): Content
|
||||
public final method size(): int
|
||||
}
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
public interface A {
|
||||
inner class A/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class A/DefaultImpls {
|
||||
inner class A/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(p0: A, p1: java.lang.Object, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface B {
|
||||
inner class B/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class B/DefaultImpls {
|
||||
inner class B/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(p0: B, p1: java.lang.Object, p2: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt12416Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Z1 {
|
||||
inner class Z1/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z1/DefaultImpls {
|
||||
inner class Z1/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: Z1, p1: java.lang.String, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z1C {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Z2 {
|
||||
inner class Z2/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z2/DefaultImpls {
|
||||
inner class Z2/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: Z2, p1: java.lang.String, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z2C {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
Vendored
+67
@@ -0,0 +1,67 @@
|
||||
public interface A {
|
||||
inner class A/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class A/DefaultImpls {
|
||||
inner class A/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(p0: A, p1: java.lang.Object, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface B {
|
||||
inner class B/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class B/DefaultImpls {
|
||||
inner class B/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(p0: B, p1: java.lang.Object, p2: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class TwoParentsWithDifferentMethodsTwoBridges2Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Z1 {
|
||||
inner class Z1/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z1/DefaultImpls {
|
||||
inner class Z1/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: Z1, p1: java.lang.String, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z1Class {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Z2 {
|
||||
inner class Z2/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z2/DefaultImpls {
|
||||
inner class Z2/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: Z2, p1: java.lang.String, p2: int): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z2Class {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
public final class A {
|
||||
public final static field Companion: A.Companion
|
||||
inner class A/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class A/Companion {
|
||||
inner class A/Companion
|
||||
private method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method ok(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class CompanionObjectReceiverKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public enum class E {
|
||||
public final static field A: E
|
||||
public final static field B: E
|
||||
protected method <init>(p0: java.lang.String, p1: int): void
|
||||
public final @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
public static method valueOf(p0: java.lang.String): E
|
||||
public static method values(): E[]
|
||||
}
|
||||
|
||||
|
||||
public final class EnumEntryMemberKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
compiler/testData/codegen/light-analysis/callableReference/bound/equals/nullableReceiverInEquals.txt
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
public final class A {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class NullableReceiverInEqualsKt {
|
||||
private final static @org.jetbrains.annotations.NotNull field A_bar: kotlin.reflect.KMutableProperty1
|
||||
private final static @org.jetbrains.annotations.NotNull field A_foo: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field a: A
|
||||
private final static @org.jetbrains.annotations.NotNull field aBar: kotlin.reflect.KMutableProperty0
|
||||
private final static @org.jetbrains.annotations.NotNull field aFoo: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field aa: A
|
||||
private final static @org.jetbrains.annotations.NotNull field nullBar: kotlin.reflect.KMutableProperty0
|
||||
private final static @org.jetbrains.annotations.NotNull field nullFoo: kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method foo(@org.jetbrains.annotations.Nullable p0: A): void
|
||||
public final static @org.jetbrains.annotations.NotNull method getA(): A
|
||||
public final static @org.jetbrains.annotations.NotNull method getABar(): kotlin.reflect.KMutableProperty0
|
||||
public final static @org.jetbrains.annotations.NotNull method getAFoo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getA_bar(): kotlin.reflect.KMutableProperty1
|
||||
public final static @org.jetbrains.annotations.NotNull method getA_foo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getAa(): A
|
||||
public final static method getBar(@org.jetbrains.annotations.Nullable p0: A): int
|
||||
public final static @org.jetbrains.annotations.NotNull method getNullBar(): kotlin.reflect.KMutableProperty0
|
||||
public final static @org.jetbrains.annotations.NotNull method getNullFoo(): kotlin.reflect.KFunction
|
||||
public final static method setBar(@org.jetbrains.annotations.Nullable p0: A, p1: int): void
|
||||
}
|
||||
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
public final class C {
|
||||
private field prop: int
|
||||
public method <init>(): void
|
||||
public final method getProp(): int
|
||||
public final method setProp(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class PropertyAccessorsKt {
|
||||
private final static @org.jetbrains.annotations.NotNull field C_prop: kotlin.reflect.KMutableProperty1
|
||||
private final static @org.jetbrains.annotations.NotNull field C_propReflect: kotlin.reflect.KMutableProperty1
|
||||
private final static @org.jetbrains.annotations.NotNull field cProp: kotlin.reflect.KMutableProperty0
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getCProp(): kotlin.reflect.KMutableProperty0
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_prop(): kotlin.reflect.KMutableProperty1
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_propReflect(): kotlin.reflect.KMutableProperty1
|
||||
}
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
public final class test/A {
|
||||
public method <init>(): void
|
||||
public final method bar(): void
|
||||
public final method foo(): void
|
||||
}
|
||||
|
||||
|
||||
public final class test/ReceiverInEqualsKt {
|
||||
private final static @org.jetbrains.annotations.NotNull field A_foo: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field a: test.A
|
||||
private final static @org.jetbrains.annotations.NotNull field aBar: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field aFoo: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field aa: test.A
|
||||
private final static @org.jetbrains.annotations.NotNull field aaFoo: kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getA(): test.A
|
||||
public final static @org.jetbrains.annotations.NotNull method getABar(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getAFoo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getA_foo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getAa(): test.A
|
||||
public final static @org.jetbrains.annotations.NotNull method getAaFoo(): kotlin.reflect.KFunction
|
||||
}
|
||||
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
public final class C {
|
||||
private final field bar: int
|
||||
public method <init>(): void
|
||||
public final method foo(): void
|
||||
public final method getBar(): int
|
||||
}
|
||||
|
||||
|
||||
public final class ReflectionReferenceKt {
|
||||
private final static @org.jetbrains.annotations.NotNull field C_bar: kotlin.reflect.KProperty1
|
||||
private final static @org.jetbrains.annotations.NotNull field C_barReflect: kotlin.reflect.KProperty1
|
||||
private final static @org.jetbrains.annotations.NotNull field C_foo: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field C_fooReflect: kotlin.reflect.KFunction
|
||||
private final static @org.jetbrains.annotations.NotNull field cBar: kotlin.reflect.KProperty0
|
||||
private final static @org.jetbrains.annotations.NotNull field cFoo: kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getCBar(): kotlin.reflect.KProperty0
|
||||
public final static @org.jetbrains.annotations.NotNull method getCFoo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_bar(): kotlin.reflect.KProperty1
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_barReflect(): kotlin.reflect.KProperty1
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_foo(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getC_fooReflect(): kotlin.reflect.KFunction
|
||||
public final static @org.jetbrains.annotations.NotNull method getClassName(@org.jetbrains.annotations.NotNull p0: java.lang.Object): java.lang.String
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public final class SimpleKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method id(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public final class SimpleValKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method go(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method id(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
}
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
public final class KCallableNameIntrinsicKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt12738Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method get(p0: java.lang.Object): kotlin.jvm.functions.Function0
|
||||
}
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
public final class A {
|
||||
private field v: int
|
||||
public method <init>(p0: int): void
|
||||
public final method f(p0: int): int
|
||||
public final method getV(): int
|
||||
public final method setV(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class F {
|
||||
public final static field INSTANCE: F
|
||||
private static field u: int
|
||||
private method <init>(): void
|
||||
public final method getU(): int
|
||||
public final method setU(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class MultiCaseKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method g(@org.jetbrains.annotations.NotNull p0: A, p1: int): int
|
||||
public final static method getW(@org.jetbrains.annotations.NotNull p0: A): int
|
||||
public final static method setW(@org.jetbrains.annotations.NotNull p0: A, p1: int): void
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
public final class NullReceiverKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method getOk(@org.jetbrains.annotations.Nullable p0: java.lang.String): java.lang.String
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public final class ObjectReceiverKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Singleton {
|
||||
public final static field INSTANCE: Singleton
|
||||
private method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method ok(): java.lang.String
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public final class PrimitiveReceiverKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method foo(p0: boolean): int
|
||||
public final static method foo(p0: byte): int
|
||||
public final static method foo(p0: char): int
|
||||
public final static method foo(p0: double): int
|
||||
public final static method foo(p0: float): int
|
||||
public final static method foo(p0: int): int
|
||||
public final static method foo(p0: long): int
|
||||
public final static method foo(p0: short): int
|
||||
public final static method testRef(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0, p2: int): void
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public final class SimpleFunctionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
public final class SimplePropertyKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
public final class TestKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+1
@@ -21,6 +21,7 @@ public final class C {
|
||||
|
||||
|
||||
public final class IsWithMutableKt {
|
||||
public final static method assert(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
+1
@@ -292,6 +292,7 @@ public final class MS {
|
||||
|
||||
|
||||
public final class ReifiedIsWithMutableKt {
|
||||
public final static method assert(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
private final static method reifiedIs(p0: java.lang.Object): boolean
|
||||
private final static method reifiedIsNot(p0: java.lang.Object): boolean
|
||||
|
||||
+1
@@ -314,6 +314,7 @@ public final class S {
|
||||
|
||||
|
||||
public final class SafeAsWithMutableKt {
|
||||
public final static method assert(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method safeAsReturnsNonNull(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
public final static method safeAsReturnsNull(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
public final class JavaIntrinsicWithSideEffectKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class PrimitivesKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class SideEffectKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class SimpleKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+31
@@ -0,0 +1,31 @@
|
||||
public final class C {
|
||||
public final static field Companion: C.Companion
|
||||
inner class C/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class C/Companion {
|
||||
inner class C/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class OK {
|
||||
public final static field INSTANCE: OK
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class ObjectSuperConstructorCallKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public abstract class S {
|
||||
private final @org.jetbrains.annotations.NotNull field klass: java.lang.Class
|
||||
private final field result: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Class): void
|
||||
public final @org.jetbrains.annotations.NotNull method getKlass(): java.lang.Class
|
||||
public final method getResult(): java.lang.String
|
||||
}
|
||||
@@ -3,6 +3,11 @@ public final class Kt1157Kt {
|
||||
}
|
||||
|
||||
|
||||
public interface Runnable {
|
||||
public abstract method run(): void
|
||||
}
|
||||
|
||||
|
||||
public final class SomeClass {
|
||||
public final static field INSTANCE: SomeClass
|
||||
private final static field work: SomeClass$work$1
|
||||
|
||||
@@ -18,3 +18,8 @@ private final class C/Inner {
|
||||
public final class PrivateOuterFunctionsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Runnable {
|
||||
public abstract method run(): void
|
||||
}
|
||||
|
||||
@@ -17,3 +17,8 @@ private final class C/Inner {
|
||||
public final class PrivateOuterPropertyKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Runnable {
|
||||
public abstract method run(): void
|
||||
}
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
public abstract class A {
|
||||
inner class A/C
|
||||
private method <init>(): void
|
||||
private method <init>(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final static class A/C {
|
||||
inner class A/C
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class B {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class D {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class E {
|
||||
public method <init>(): void
|
||||
public method <init>(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class Q {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class S {
|
||||
public final static field INSTANCE: S
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class SealedInSameFileKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class T {
|
||||
public final static field INSTANCE: T
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public abstract class X {
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public abstract class Y {
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public abstract class Z {
|
||||
private method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class UnderscoreParametersKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): java.lang.String
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
public final class DataClassEqualsHashCodeToStringKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Foo {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method component1(): java.lang.String
|
||||
public synthetic static method copy$default(p0: Foo, p1: java.lang.String, p2: int, p3: java.lang.Object): Foo
|
||||
public final @org.jetbrains.annotations.NotNull method copy(@org.jetbrains.annotations.NotNull p0: java.lang.String): Foo
|
||||
public method equals(p0: java.lang.Object): boolean
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
public method hashCode(): int
|
||||
public method toString(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public final class Kt14839Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public synthetic static method inlineFunctionWithDefaultArguments$default(p0: java.lang.Throwable, p1: boolean, p2: int, p3: java.lang.Object): void
|
||||
public final static method inlineFunctionWithDefaultArguments(@org.jetbrains.annotations.Nullable p0: java.lang.Throwable, p1: boolean): void
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class BeginWithExceptionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field exception: java.lang.Throwable
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getException(): java.lang.Throwable
|
||||
public final method handleException(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setException(@org.jetbrains.annotations.Nullable p0: java.lang.Throwable): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
public final class BeginWithExceptionNoHandleExceptionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
public final class CoercionToUnitKt {
|
||||
private static field FALSE: boolean
|
||||
private static field TRUE: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
public final static method getFALSE(): boolean
|
||||
public final static method getTRUE(): boolean
|
||||
public final static method setFALSE(p0: boolean): void
|
||||
public final static method setTRUE(p0: boolean): void
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method await(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class BreakFinallyKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class BreakStatementKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class DoWhileStatementKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ForContinueKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ForStatementKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class IfStatementKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class SwitchLikeWhenKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method handleException(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendAndLog(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendLogAndThrow(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ThrowFromCatchKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method handleException(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendAndLog(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ThrowInTryWithHandleResultKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithResult(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class WhileStatementKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
private field result: boolean
|
||||
public method <init>(): void
|
||||
public final method foo(): void
|
||||
public final method getResult(): boolean
|
||||
public final method setResult(p0: boolean): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ControllerAccessFromInnerLambdaKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method noinlineRun(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public synthetic static method suspendHere$default(p0: Controller, p1: java.lang.String, p2: int, p3: kotlin.coroutines.Continuation, p4: int, p5: java.lang.Object): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, p1: int, @org.jetbrains.annotations.NotNull p2: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class DefaultParametersInSuspendKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class EmptyClosureKt {
|
||||
private static field result: int
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method getResult(): int
|
||||
public final static method setResult(p0: int): void
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class FalseUnitCoercionKt {
|
||||
private static @org.jetbrains.annotations.NotNull field result: java.lang.Object
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: java.lang.Object): void
|
||||
public final static @org.jetbrains.annotations.NotNull method getResult(): java.lang.Object
|
||||
public final static method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.Object): void
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
public final class GenerateKt {
|
||||
private static field was: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method gen(): kotlin.sequences.Sequence
|
||||
public final static @org.jetbrains.annotations.NotNull method generate(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): kotlin.sequences.Sequence
|
||||
public final static method getWas(): boolean
|
||||
public final static method setWas(p0: boolean): void
|
||||
}
|
||||
|
||||
|
||||
public final class GeneratorController {
|
||||
private field nextStep: kotlin.coroutines.Continuation
|
||||
public method <init>(): void
|
||||
protected method computeNext(): void
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setNextStep(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): void
|
||||
public final @org.jetbrains.annotations.Nullable method yield(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field exception: java.lang.Throwable
|
||||
private final @org.jetbrains.annotations.NotNull field postponedActions: java.util.ArrayList
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getException(): java.lang.Throwable
|
||||
public final @org.jetbrains.annotations.NotNull method getPostponedActions(): java.util.ArrayList
|
||||
public final method handleException(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final method setException(@org.jetbrains.annotations.Nullable p0: java.lang.Throwable): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithException(@org.jetbrains.annotations.NotNull p0: java.lang.Exception, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithValue(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class HandleExceptionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method commonThrow(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable): void
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private field ok: boolean
|
||||
public method <init>(): void
|
||||
public final method getOk(): boolean
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setOk(p0: boolean): void
|
||||
}
|
||||
|
||||
|
||||
public final class HandleResultCallEmptyBodyKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
public final static method unitFun(): void
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private field isCompleted: boolean
|
||||
public method <init>(): void
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method isCompleted(): boolean
|
||||
public final method setCompleted(p0: boolean): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class HandleResultNonUnitExpressionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field log: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getLog(): java.lang.String
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setLog(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendAndLog(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class HandleResultSuspendedKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class IllegalStateKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder1(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method builder2(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendInline(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendInline(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
private final method suspendInline(p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final method withValue(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
}
|
||||
|
||||
|
||||
public final class InlineSuspendFunctionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
|
||||
|
||||
public final class OK {
|
||||
public method <init>(): void
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
public final class Controller {
|
||||
private final @org.jetbrains.annotations.NotNull field postponedActions: java.util.List
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getPostponedActions(): java.util.List
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithException(@org.jetbrains.annotations.NotNull p0: java.lang.Exception, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithValue(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class InlinedTryCatchFinallyKt {
|
||||
private static @org.jetbrains.annotations.NotNull field globalResult: java.lang.String
|
||||
private static field wasCalled: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public synthetic static method builder$default(p0: boolean, p1: kotlin.jvm.functions.Function1, p2: int, p3: java.lang.Object): void
|
||||
public final static method builder(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1): void
|
||||
public final static method commonThrow(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable): void
|
||||
public final static @org.jetbrains.annotations.NotNull method getGlobalResult(): java.lang.String
|
||||
public final static method getWasCalled(): boolean
|
||||
public final static method setGlobalResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final static method setWasCalled(p0: boolean): void
|
||||
public final static @org.jetbrains.annotations.NotNull method tryCatch(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method tryCatchFinally(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1, @org.jetbrains.annotations.NotNull p2: kotlin.jvm.functions.Function0): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private field i: int
|
||||
public method <init>(): void
|
||||
public final method getI(): int
|
||||
public final method setI(p0: int): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class InnerSuspensionCallsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method runCast(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method runInstanceOf(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class InstanceOfContinuationKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
public final class ComplicatedMergeKt {
|
||||
private static field booleanResult: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method foo(): boolean
|
||||
public final static method setBooleanRes(p0: boolean): void
|
||||
}
|
||||
|
||||
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class I2bResultKt {
|
||||
private static field byteResult: byte
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method foo(): int
|
||||
public final static method setByteRes(p0: byte): void
|
||||
}
|
||||
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LoadFromBooleanArrayKt {
|
||||
private static field booleanResult: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method setBooleanRes(p0: boolean): void
|
||||
}
|
||||
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LoadFromByteArrayKt {
|
||||
private static field byteResult: byte
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method setByteRes(p0: byte): void
|
||||
}
|
||||
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class NoVariableInTableKt {
|
||||
private static field booleanResult: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method setBooleanRes(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.Unit): void
|
||||
}
|
||||
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class SameIconst1ManyVarsKt {
|
||||
private static field result: java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method foo(): int
|
||||
public final static method setRes(p0: byte, p1: int): void
|
||||
}
|
||||
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class UsedInArrayStoreKt {
|
||||
public static @kotlin.jvm.JvmField @org.jetbrains.annotations.NotNull field booleanResult: boolean[]
|
||||
public static @kotlin.jvm.JvmField @org.jetbrains.annotations.NotNull field byteResult: byte[]
|
||||
public static @kotlin.jvm.JvmField @org.jetbrains.annotations.NotNull field charResult: char[]
|
||||
public static @kotlin.jvm.JvmField @org.jetbrains.annotations.NotNull field intResult: int[]
|
||||
public static @kotlin.jvm.JvmField @org.jetbrains.annotations.NotNull field shortResult: short[]
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
Vendored
+20
@@ -0,0 +1,20 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class UsedInMethodCallKt {
|
||||
private static field booleanResult: boolean
|
||||
private static field byteResult: byte
|
||||
private static field charResult: char
|
||||
private static field intResult: int
|
||||
private static field shortResult: short
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method setBooleanRes(p0: boolean): void
|
||||
public final static method setByteRes(p0: byte): void
|
||||
public final static method setCharRes(p0: char): void
|
||||
public final static method setIntRes(p0: int): void
|
||||
public final static method setShortRes(p0: short): void
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class UsedInPutfieldKt {
|
||||
public static @kotlin.jvm.JvmField field booleanResult: boolean
|
||||
public static @kotlin.jvm.JvmField field byteResult: byte
|
||||
public static @kotlin.jvm.JvmField field charResult: char
|
||||
public static @kotlin.jvm.JvmField field intResult: int
|
||||
public static @kotlin.jvm.JvmField field shortResult: short
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class UsedInVarStoreKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class IterateOverArrayKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(p0: java.lang.Object, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class Kt12958Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LambdaParametersKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): void
|
||||
public final static @org.jetbrains.annotations.NotNull method inline(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method noinline(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public final class Controller {
|
||||
private field ok: boolean
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final method getOk(): boolean
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setOk(p0: boolean): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LastExpressionIsLoopKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private field wasHandleResultCalled: boolean
|
||||
public method <init>(): void
|
||||
public final method getWasHandleResultCalled(): boolean
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setWasHandleResultCalled(p0: boolean): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LastStatementIncKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
public final class Controller {
|
||||
private field wasHandleResultCalled: boolean
|
||||
public method <init>(): void
|
||||
public final method getWasHandleResultCalled(): boolean
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setWasHandleResultCalled(p0: boolean): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LastStementAssignmentKt {
|
||||
private static @org.jetbrains.annotations.NotNull field varWithCustomSetter: java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static @org.jetbrains.annotations.NotNull method getVarWithCustomSetter(): java.lang.String
|
||||
public final static method setVarWithCustomSetter(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public final class Controller {
|
||||
private field ok: boolean
|
||||
private @org.jetbrains.annotations.NotNull field v: java.lang.String
|
||||
public method <init>(): void
|
||||
public final method getOk(): boolean
|
||||
public final @org.jetbrains.annotations.NotNull method getV(): java.lang.String
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: kotlin.Unit, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setOk(p0: boolean): void
|
||||
public final method setV(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class LastUnitExpressionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): java.lang.String
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ManualContinuationImplKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class MainKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
|
||||
|
||||
public final class lib/Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
public final class MainKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static @org.jetbrains.annotations.Nullable method localInlineSuspendExtension(@org.jetbrains.annotations.NotNull p0: lib.Controller, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final static @org.jetbrains.annotations.Nullable method localSuspendExtension(@org.jetbrains.annotations.NotNull p0: lib.Controller, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
@kotlin.coroutines.AllowSuspendExtensions
|
||||
public final class lib/Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method inlineSuspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class lib/ControllerKt {
|
||||
public final static @org.jetbrains.annotations.Nullable method inlineSuspendExtension(@org.jetbrains.annotations.NotNull p0: lib.Controller, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final static @org.jetbrains.annotations.Nullable method suspendExtension(@org.jetbrains.annotations.NotNull p0: lib.Controller, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field lastSuspension: kotlin.coroutines.Continuation
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getLastSuspension(): kotlin.coroutines.Continuation
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method hasNext(): boolean
|
||||
public final method next(): void
|
||||
public final method setLastSuspension(@org.jetbrains.annotations.Nullable p0: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class MultipleInvokeCallsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method builder2(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): void
|
||||
private final static method runControllers(p0: Controller, p1: Controller): void
|
||||
}
|
||||
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field lastSuspension: kotlin.coroutines.Continuation
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getLastSuspension(): kotlin.coroutines.Continuation
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method hasNext(): boolean
|
||||
public final method next(): void
|
||||
public final method setLastSuspension(@org.jetbrains.annotations.Nullable p0: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class MultipleInvokeCallsInsideInlineLambda1Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method builder2(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): void
|
||||
public final static method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
private final static method runControllers(p0: Controller, p1: Controller): void
|
||||
}
|
||||
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field lastSuspension: kotlin.coroutines.Continuation
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getLastSuspension(): kotlin.coroutines.Continuation
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method hasNext(): boolean
|
||||
public final method next(): void
|
||||
public final method setLastSuspension(@org.jetbrains.annotations.Nullable p0: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class MultipleInvokeCallsInsideInlineLambda2Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method builder2(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): void
|
||||
public final static method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
private final static method runControllers(p0: Controller, p1: Controller): void
|
||||
}
|
||||
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
public final class Controller {
|
||||
private @org.jetbrains.annotations.Nullable field lastSuspension: kotlin.coroutines.Continuation
|
||||
private @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getLastSuspension(): kotlin.coroutines.Continuation
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final method hasNext(): boolean
|
||||
public final method next(): void
|
||||
public final method setLastSuspension(@org.jetbrains.annotations.Nullable p0: kotlin.coroutines.Continuation): void
|
||||
public final method setResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class MultipleInvokeCallsInsideInlineLambda3Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final static method builder2(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function3): void
|
||||
public final static method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
private final static method runControllers(p0: Controller, p1: Controller): void
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
public final class Controller {
|
||||
private final @org.jetbrains.annotations.NotNull field postponedActions: java.util.ArrayList
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getPostponedActions(): java.util.ArrayList
|
||||
public final method handleResult(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method run(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithException(@org.jetbrains.annotations.NotNull p0: java.lang.Exception, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method suspendWithValue(@org.jetbrains.annotations.NotNull p0: java.lang.String, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class NestedTryCatchKt {
|
||||
private static @org.jetbrains.annotations.NotNull field globalResult: java.lang.String
|
||||
private static field wasCalled: boolean
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public synthetic static method builder$default(p0: boolean, p1: kotlin.jvm.functions.Function1, p2: int, p3: java.lang.Object): void
|
||||
public final static method builder(p0: boolean, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1): void
|
||||
public final static method commonThrow(@org.jetbrains.annotations.NotNull p0: java.lang.Throwable): void
|
||||
public final static @org.jetbrains.annotations.NotNull method getGlobalResult(): java.lang.String
|
||||
public final static method getWasCalled(): boolean
|
||||
public final static method setGlobalResult(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final static method setWasCalled(p0: boolean): void
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Controller {
|
||||
private field res: int
|
||||
public method <init>(): void
|
||||
public final method getRes(): int
|
||||
public final method handleResult(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setRes(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class NoSuspensionPointsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): int
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
private field cResult: int
|
||||
public method <init>(): void
|
||||
public final method getCResult(): int
|
||||
public final method handleResult(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setCResult(p0: int): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class NonLocalReturnFromInlineLambdaKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): Controller
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
public final class Controller {
|
||||
private field cResult: int
|
||||
public method <init>(): void
|
||||
public final method getCResult(): int
|
||||
public final method handleResult(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setCResult(p0: int): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class NonLocalReturnFromInlineLambdaDeepKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): Controller
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private field res: int
|
||||
public method <init>(): void
|
||||
public final method getRes(): int
|
||||
public final method handleResult(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setRes(p0: int): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class ReturnByLabelKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): int
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class SimpleKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class Controller {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class SimpleExceptionKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): void
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
public final class Controller {
|
||||
private field res: int
|
||||
public method <init>(): void
|
||||
public final method getRes(): int
|
||||
public final method handleResult(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.coroutines.Continuation): void
|
||||
public final method setRes(p0: int): void
|
||||
public final @org.jetbrains.annotations.Nullable method suspendHere(@org.jetbrains.annotations.NotNull p0: kotlin.coroutines.Continuation): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class SimpleWithHandleResultKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method builder(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): int
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user