Use box tests to check if the light analysis mode (without analyzing bodies when possible) produces the same result as the complete analysis. See also the next commit in which light analysis mode is applied. Note that no tests were changed.
This commit is contained in:
committed by
Yan Zhulanow
parent
8bdb54929b
commit
328286ab14
+70
@@ -0,0 +1,70 @@
|
||||
public final class A {
|
||||
public final static field Companion: A.Companion
|
||||
private static field xb: byte
|
||||
private static @org.jetbrains.annotations.Nullable field xbn: java.lang.Byte
|
||||
private static @org.jetbrains.annotations.Nullable field xbnn: java.lang.Byte
|
||||
private static field xd: double
|
||||
private static @org.jetbrains.annotations.Nullable field xdn: java.lang.Double
|
||||
private static @org.jetbrains.annotations.Nullable field xdnn: java.lang.Double
|
||||
private static field xf: float
|
||||
private static @org.jetbrains.annotations.Nullable field xfn: java.lang.Float
|
||||
private static @org.jetbrains.annotations.Nullable field xfnn: java.lang.Float
|
||||
private static field xi: int
|
||||
private static @org.jetbrains.annotations.Nullable field xin: java.lang.Integer
|
||||
private static @org.jetbrains.annotations.Nullable field xinn: java.lang.Integer
|
||||
private static field xl: long
|
||||
private static @org.jetbrains.annotations.Nullable field xln: java.lang.Long
|
||||
private static @org.jetbrains.annotations.Nullable field xlnn: java.lang.Long
|
||||
private static field xs: short
|
||||
private static @org.jetbrains.annotations.Nullable field xsn: java.lang.Short
|
||||
private static @org.jetbrains.annotations.Nullable field xsnn: java.lang.Short
|
||||
inner class A/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class A/Companion {
|
||||
inner class A/Companion
|
||||
private method <init>(): void
|
||||
public final method getXb(): byte
|
||||
public final @org.jetbrains.annotations.Nullable method getXbn(): java.lang.Byte
|
||||
public final @org.jetbrains.annotations.Nullable method getXbnn(): java.lang.Byte
|
||||
public final method getXd(): double
|
||||
public final @org.jetbrains.annotations.Nullable method getXdn(): java.lang.Double
|
||||
public final @org.jetbrains.annotations.Nullable method getXdnn(): java.lang.Double
|
||||
public final method getXf(): float
|
||||
public final @org.jetbrains.annotations.Nullable method getXfn(): java.lang.Float
|
||||
public final @org.jetbrains.annotations.Nullable method getXfnn(): java.lang.Float
|
||||
public final method getXi(): int
|
||||
public final @org.jetbrains.annotations.Nullable method getXin(): java.lang.Integer
|
||||
public final @org.jetbrains.annotations.Nullable method getXinn(): java.lang.Integer
|
||||
public final method getXl(): long
|
||||
public final @org.jetbrains.annotations.Nullable method getXln(): java.lang.Long
|
||||
public final @org.jetbrains.annotations.Nullable method getXlnn(): java.lang.Long
|
||||
public final method getXs(): short
|
||||
public final @org.jetbrains.annotations.Nullable method getXsn(): java.lang.Short
|
||||
public final @org.jetbrains.annotations.Nullable method getXsnn(): java.lang.Short
|
||||
public final method setXb(p0: byte): void
|
||||
public final method setXbn(@org.jetbrains.annotations.Nullable p0: java.lang.Byte): void
|
||||
public final method setXbnn(@org.jetbrains.annotations.Nullable p0: java.lang.Byte): void
|
||||
public final method setXd(p0: double): void
|
||||
public final method setXdn(@org.jetbrains.annotations.Nullable p0: java.lang.Double): void
|
||||
public final method setXdnn(@org.jetbrains.annotations.Nullable p0: java.lang.Double): void
|
||||
public final method setXf(p0: float): void
|
||||
public final method setXfn(@org.jetbrains.annotations.Nullable p0: java.lang.Float): void
|
||||
public final method setXfnn(@org.jetbrains.annotations.Nullable p0: java.lang.Float): void
|
||||
public final method setXi(p0: int): void
|
||||
public final method setXin(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): void
|
||||
public final method setXinn(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): void
|
||||
public final method setXl(p0: long): void
|
||||
public final method setXln(@org.jetbrains.annotations.Nullable p0: java.lang.Long): void
|
||||
public final method setXlnn(@org.jetbrains.annotations.Nullable p0: java.lang.Long): void
|
||||
public final method setXs(p0: short): void
|
||||
public final method setXsn(@org.jetbrains.annotations.Nullable p0: java.lang.Short): void
|
||||
public final method setXsnn(@org.jetbrains.annotations.Nullable p0: java.lang.Short): void
|
||||
}
|
||||
|
||||
|
||||
public final class BoxPrimitiveTypeInClinitOfClassObjectKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
public final class CompanionInitializationKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class ConcreteWithStatic {
|
||||
public final static field Companion: ConcreteWithStatic.Companion
|
||||
inner class ConcreteWithStatic/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class ConcreteWithStatic/Companion {
|
||||
inner class ConcreteWithStatic/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public interface IStatic
|
||||
|
||||
|
||||
public class Static {
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: IStatic): void
|
||||
public final method doSth(): void
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
public final class test/ClassNamedAsOldPackageFacadeKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class test/TestPackage {
|
||||
private final @org.jetbrains.annotations.NotNull field OK: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getOK(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
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 @org.jetbrains.annotations.NotNull method create(): C
|
||||
}
|
||||
|
||||
|
||||
public final class ClassObjectKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+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 class ClassObjectAsExtensionReceiverKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method foo(@org.jetbrains.annotations.NotNull p0: java.lang.Object): int
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
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 ClassObjectAsStaticInitializerKt {
|
||||
private static field global: int
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method getGlobal(): int
|
||||
public final static method setGlobal(p0: int): void
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
public final class A {
|
||||
public final static field Companion: A.Companion
|
||||
private final static field value: int
|
||||
inner class A/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class A/Companion {
|
||||
inner class A/Companion
|
||||
private method <init>(): void
|
||||
public final method getValue(): int
|
||||
}
|
||||
|
||||
|
||||
public final class ClassObjectFieldKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public interface C {
|
||||
public final static field Companion: C.Companion
|
||||
inner class C/Companion
|
||||
}
|
||||
|
||||
|
||||
public final static class C/Companion {
|
||||
private final static @org.jetbrains.annotations.NotNull field FOO: java.lang.String
|
||||
inner class C/Companion
|
||||
private method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFOO(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class ClassObjectInTraitKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
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 valueOf(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method values(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class ClassObjectNotOfEnumKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
public final class ClassObjectToStringKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SomeClass {
|
||||
public final static field Companion: SomeClass.Companion
|
||||
inner class SomeClass/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class SomeClass/Companion {
|
||||
inner class SomeClass/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
public final class C {
|
||||
public final static field Companion: C.Companion
|
||||
inner class C/Companion
|
||||
inner class C/ZZZ
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class C/Companion {
|
||||
inner class C/Companion
|
||||
private method <init>(): void
|
||||
private final method create(): C
|
||||
}
|
||||
|
||||
|
||||
public final static class C/ZZZ {
|
||||
private final @org.jetbrains.annotations.NotNull field c: C
|
||||
inner class C/ZZZ
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getC(): C
|
||||
}
|
||||
|
||||
|
||||
public final class ClassObjectWithPrivateGenericMemberKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+37
@@ -0,0 +1,37 @@
|
||||
public final class ClassObjectsWithParentClassesKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class Test {
|
||||
public final static field Companion: Test.Companion
|
||||
inner class Test/Companion
|
||||
inner class Test/InnerClass
|
||||
inner class Test/NotInnerClass
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method test(): Test.InnerClass
|
||||
}
|
||||
|
||||
|
||||
public final static class Test/Companion {
|
||||
inner class Test/Companion
|
||||
private method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method testStatic(@org.jetbrains.annotations.NotNull p0: Test.InnerClass): Test.NotInnerClass
|
||||
}
|
||||
|
||||
|
||||
public class Test/InnerClass {
|
||||
synthetic final field this$0: Test
|
||||
private final field value: int
|
||||
inner class Test/InnerClass
|
||||
public method <init>(p0: Test, p1: int): void
|
||||
public final method getValue(): int
|
||||
}
|
||||
|
||||
|
||||
public static class Test/NotInnerClass {
|
||||
private final field value: int
|
||||
inner class Test/NotInnerClass
|
||||
public method <init>(p0: int): void
|
||||
public final method getValue(): int
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
public final class A {
|
||||
public final static field B: A.B
|
||||
inner class A/B
|
||||
public method <init>(): void
|
||||
public final method a(): int
|
||||
private final method getP(): int
|
||||
}
|
||||
|
||||
|
||||
public final static class A/B {
|
||||
inner class A/B
|
||||
private method <init>(): void
|
||||
public final method getP(): int
|
||||
}
|
||||
|
||||
|
||||
public final class DefaultObjectSameNamesAsInOuterKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
public final class C {
|
||||
private synthetic final field $$delegate_0: Trait1
|
||||
private synthetic final field $$delegate_1: Trait2
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: Trait1, @org.jetbrains.annotations.NotNull p1: Trait2): void
|
||||
public @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Delegation2Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class T1 {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class T2 {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Trait1 {
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Trait2 {
|
||||
public abstract @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
public final class Delegation3Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface One {
|
||||
inner class One/DefaultImpls
|
||||
public abstract method faz(): int
|
||||
public abstract method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class One/DefaultImpls {
|
||||
inner class One/DefaultImpls
|
||||
public static method faz(p0: One): int
|
||||
}
|
||||
|
||||
|
||||
public final class OneImpl {
|
||||
public method <init>(): void
|
||||
public method faz(): int
|
||||
public method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Test2 {
|
||||
private synthetic final field $$delegate_0: Two
|
||||
private synthetic final field $$delegate_1: One
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: One, @org.jetbrains.annotations.NotNull p1: Two): void
|
||||
public method faz(): int
|
||||
public method foo(): int
|
||||
public method quux(): int
|
||||
}
|
||||
|
||||
|
||||
public interface Two {
|
||||
inner class Two/DefaultImpls
|
||||
public abstract method foo(): int
|
||||
public abstract method quux(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Two/DefaultImpls {
|
||||
inner class Two/DefaultImpls
|
||||
public static method quux(p0: Two): int
|
||||
}
|
||||
|
||||
|
||||
public final class TwoImpl {
|
||||
public method <init>(): void
|
||||
public method foo(): int
|
||||
public method quux(): int
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
public final class Delegation4Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface First {
|
||||
public abstract method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Impl {
|
||||
public method <init>(): void
|
||||
public method bar(): int
|
||||
public method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public interface Second {
|
||||
public abstract method bar(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Test {
|
||||
private synthetic final field $$delegate_0: Second
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: Second): void
|
||||
public method bar(): int
|
||||
public method foo(): int
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
public interface A {
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class DelegationGenericArgKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Derived {
|
||||
private synthetic final field $$delegate_0: A
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: A): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(p0: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Object): java.lang.String
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
public interface A {
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(@org.jetbrains.annotations.NotNull p0: java.lang.Number): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class DelegationGenericArgUpperBoundKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Derived {
|
||||
private synthetic final field $$delegate_0: A
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: A): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(p0: int): java.lang.String
|
||||
public synthetic method foo(p0: java.lang.Number): java.lang.String
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
public interface A {
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class DelegationGenericLongArgKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Derived {
|
||||
private synthetic final field $$delegate_0: A
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: A): void
|
||||
public synthetic method foo(p0: java.lang.Object, p1: java.lang.Object): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method foo(p0: long, p1: int): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
public final class DelegationJavaKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class TestJava {
|
||||
private synthetic final field $$delegate_0: java.lang.Runnable
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.Runnable): void
|
||||
public method run(): void
|
||||
}
|
||||
|
||||
|
||||
public final class TestRunnable {
|
||||
public method <init>(): void
|
||||
public method run(): void
|
||||
}
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
public final class test/DelegationMethodsWithArgsKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface test/InputTextField {
|
||||
public abstract method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
|
||||
|
||||
public interface test/MooableTextField {
|
||||
public abstract method moo(p0: int, p1: int, p2: int): int
|
||||
}
|
||||
|
||||
|
||||
public final class test/SimpleTextField {
|
||||
private field text2: java.lang.String
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
public method moo(p0: int, p1: int, p2: int): int
|
||||
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
|
||||
|
||||
public interface test/TextField {
|
||||
public abstract @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class test/TextFieldWrapper {
|
||||
private synthetic final field $$delegate_0: test.MooableTextField
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: test.MooableTextField): void
|
||||
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
||||
public method moo(p0: int, p1: int, p2: int): int
|
||||
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public final class ExceptionConstructorKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class GameError {
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
public final class C {
|
||||
public final static field Foo: C.Foo
|
||||
inner class C/Foo
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class C/Foo {
|
||||
inner class C/Foo
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class ExtensionOnNamedClassObjectKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method create(@org.jetbrains.annotations.NotNull p0: C.Foo): int
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
public interface Abstract
|
||||
|
||||
|
||||
public class Base {
|
||||
public method <init>(): void
|
||||
public final method n(p0: int): int
|
||||
}
|
||||
|
||||
|
||||
public final class Derived1 {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class Derived2 {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class FunDelegationKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method test(@org.jetbrains.annotations.NotNull p0: Base): boolean
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
public abstract class foo/Base {
|
||||
private final field x: int
|
||||
public method <init>(): void
|
||||
public final method getX(): int
|
||||
}
|
||||
|
||||
|
||||
public final class foo/Derived {
|
||||
private final field y: int
|
||||
public method <init>(): void
|
||||
public method compareTo(@org.jetbrains.annotations.NotNull p0: foo.Derived): int
|
||||
public synthetic method compareTo(p0: java.lang.Object): int
|
||||
public final method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class foo/ImplementComparableInSubclassKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public interface A
|
||||
|
||||
|
||||
public final class B {
|
||||
public method <init>(): void
|
||||
public final method contains(p0: java.lang.Object): boolean
|
||||
public method contains(p0: java.lang.String): boolean
|
||||
public method getSize(): int
|
||||
public final method remove(p0: java.lang.Object): boolean
|
||||
public method remove(p0: java.lang.String): boolean
|
||||
public final method size(): int
|
||||
}
|
||||
|
||||
|
||||
public final class InheritSetAndHashSetKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
public interface Abstract
|
||||
|
||||
|
||||
public final class InheritanceKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class P1 {
|
||||
private synthetic final field $$delegate_0: Y
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: Y): void
|
||||
public method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class P2 {
|
||||
private synthetic final field $$delegate_0: Y
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: Y): void
|
||||
public method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class P3 {
|
||||
private synthetic final field $$delegate_0: Y
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: Y): void
|
||||
public method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class P4 {
|
||||
private synthetic final field $$delegate_0: Y
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: Y): void
|
||||
public method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Point {
|
||||
private final field y: int
|
||||
public method <init>(p0: int, p1: int): void
|
||||
public method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public class X {
|
||||
private final field x: int
|
||||
public method <init>(p0: int): void
|
||||
public final method getX(): int
|
||||
}
|
||||
|
||||
|
||||
public interface Y {
|
||||
public abstract method getY(): int
|
||||
}
|
||||
|
||||
|
||||
public final class YImpl {
|
||||
private final field y: int
|
||||
public method <init>(p0: int): void
|
||||
public method getY(): int
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
public final class InheritedInnerClassKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Outer {
|
||||
private final @org.jetbrains.annotations.Nullable field foo: Outer.InnerBase
|
||||
inner class Outer/InnerBase
|
||||
inner class Outer/InnerDerived
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.Nullable method getFoo(): Outer.InnerBase
|
||||
}
|
||||
|
||||
|
||||
public class Outer/InnerBase {
|
||||
synthetic final field this$0: Outer
|
||||
inner class Outer/InnerBase
|
||||
public method <init>(p0: Outer): void
|
||||
}
|
||||
|
||||
|
||||
public final class Outer/InnerDerived {
|
||||
synthetic final field this$0: Outer
|
||||
inner class Outer/InnerDerived
|
||||
public method <init>(p0: Outer): void
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
public final class Bar {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class Foo {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method xyzzy(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class InheritedMethodKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class C {
|
||||
private field f: int
|
||||
public method <init>(): void
|
||||
public final method getF(): int
|
||||
public final method setF(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class InitializerBlockKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
public final class InitializerBlockDImplKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class World {
|
||||
private final @org.jetbrains.annotations.NotNull field foo: World.Item
|
||||
private final @org.jetbrains.annotations.NotNull field items: java.util.ArrayList
|
||||
inner class World/Item
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFoo(): World.Item
|
||||
public final @org.jetbrains.annotations.NotNull method getItems(): java.util.ArrayList
|
||||
}
|
||||
|
||||
|
||||
public final class World/Item {
|
||||
synthetic final field this$0: World
|
||||
inner class World/Item
|
||||
public method <init>(p0: World): void
|
||||
}
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
public class A {
|
||||
private final @org.jetbrains.annotations.NotNull field value: java.lang.String
|
||||
inner class A/B
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getValue(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class A/B {
|
||||
private final @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
synthetic final field this$0: A
|
||||
inner class A/B
|
||||
public method <init>(@java.lang.Synthetic p0: A, @org.jetbrains.annotations.NotNull p1: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class C {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method aReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method classReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method extReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method extReceiver(@org.jetbrains.annotations.NotNull p0: A): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method newAReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superReceiver(): A.B
|
||||
}
|
||||
|
||||
|
||||
public final class InstantiateInDerivedKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+41
@@ -0,0 +1,41 @@
|
||||
public class A {
|
||||
private final @org.jetbrains.annotations.NotNull field value: java.lang.String
|
||||
inner class A/B
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getValue(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class A/B {
|
||||
private final @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
synthetic final field this$0: A
|
||||
inner class A/B
|
||||
public method <init>(@java.lang.Synthetic p0: A, @org.jetbrains.annotations.NotNull p1: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class C {
|
||||
inner class C/X
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class C/X {
|
||||
synthetic final field this$0: C
|
||||
inner class C/X
|
||||
public method <init>(p0: C): void
|
||||
public final @org.jetbrains.annotations.NotNull method classReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superCCastReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superCReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superXCastReceiver(): A.B
|
||||
public final @org.jetbrains.annotations.NotNull method superXReceiver(): A.B
|
||||
}
|
||||
|
||||
|
||||
public final class InstantiateInDerivedLabeledKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
public final class C {
|
||||
private final @org.jetbrains.annotations.NotNull field value: java.lang.String
|
||||
inner class C/B
|
||||
public method <init>(): void
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final @org.jetbrains.annotations.NotNull method cReceiver(): C.B
|
||||
public final @org.jetbrains.annotations.NotNull method classReceiver(): C.B
|
||||
public final @org.jetbrains.annotations.NotNull method extReceiver(): C.B
|
||||
public final @org.jetbrains.annotations.NotNull method extReceiver1(@org.jetbrains.annotations.NotNull p0: C): C.B
|
||||
public final @org.jetbrains.annotations.NotNull method getValue(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method newCReceiver(): C.B
|
||||
}
|
||||
|
||||
|
||||
public final class C/B {
|
||||
private final @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
synthetic final field this$0: C
|
||||
inner class C/B
|
||||
public method <init>(@java.lang.Synthetic p0: C, @org.jetbrains.annotations.NotNull p1: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class InstantiateInSameClassKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
public class A {
|
||||
inner class A/InnerA
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public class A/InnerA {
|
||||
synthetic final field this$0: A
|
||||
inner class A/InnerA
|
||||
public method <init>(p0: A): void
|
||||
}
|
||||
|
||||
|
||||
public final class B {
|
||||
inner class B/InnerB
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class B/InnerB {
|
||||
synthetic final field this$0: B
|
||||
inner class B/InnerB
|
||||
public method <init>(p0: B): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt6708Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
public class A {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
inner class A/B
|
||||
inner class A/C
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class A/B {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
synthetic final field this$0: A
|
||||
inner class A/B
|
||||
public method <init>(@java.lang.Synthetic p0: A, @org.jetbrains.annotations.NotNull p1: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method testB(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class A/C {
|
||||
synthetic final field this$0: A
|
||||
inner class A/C
|
||||
public method <init>(p0: A): void
|
||||
public final @org.jetbrains.annotations.NotNull method testC(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class ProperOuterKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
public class A {
|
||||
private final @org.jetbrains.annotations.NotNull field s: java.lang.String
|
||||
private final @org.jetbrains.annotations.NotNull field z: java.lang.String
|
||||
inner class A/B
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getS(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getZ(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class A/B {
|
||||
synthetic final field this$0: A
|
||||
inner class A/B
|
||||
public method <init>(@java.lang.Synthetic p0: A, @org.jetbrains.annotations.NotNull p1: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method testB(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class ProperSuperLinkingKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
public final class InnerClassKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Outer {
|
||||
private final @org.jetbrains.annotations.NotNull field foo: java.lang.StringBuilder
|
||||
inner class Outer/Inner
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.StringBuilder): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFoo(): java.lang.StringBuilder
|
||||
public final @org.jetbrains.annotations.NotNull method test(): Outer.Inner
|
||||
}
|
||||
|
||||
|
||||
public final class Outer/Inner {
|
||||
synthetic final field this$0: Outer
|
||||
inner class Outer/Inner
|
||||
public method <init>(p0: Outer): void
|
||||
public final method len(): int
|
||||
}
|
||||
Vendored
+33
@@ -0,0 +1,33 @@
|
||||
public final class CompanionInitializationKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface IStatic {
|
||||
public final static field Companion: IStatic.Companion
|
||||
public final static field const: int
|
||||
inner class IStatic/Companion
|
||||
inner class IStatic/DefaultImpls
|
||||
public abstract method doSth(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class IStatic/Companion {
|
||||
public final static field const: int
|
||||
inner class IStatic/Companion
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class IStatic/DefaultImpls {
|
||||
inner class IStatic/DefaultImpls
|
||||
public static method doSth(p0: IStatic): void
|
||||
}
|
||||
|
||||
|
||||
public class Static {
|
||||
private final field p: java.lang.Object
|
||||
public method <init>(): void
|
||||
public method doSth(): void
|
||||
public final method getP(): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
public final class Kt1018Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class StockMarketTableModel {
|
||||
private final static field COLUMN_TITLES: java.lang.Integer[]
|
||||
public final static field Companion: StockMarketTableModel.Companion
|
||||
inner class StockMarketTableModel/Companion
|
||||
public method <init>(): void
|
||||
public final method getColumnCount(): int
|
||||
}
|
||||
|
||||
|
||||
public final static class StockMarketTableModel/Companion {
|
||||
inner class StockMarketTableModel/Companion
|
||||
private method <init>(): void
|
||||
private final method getCOLUMN_TITLES(): java.lang.Integer[]
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Kt1120Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class RefreshQueue {
|
||||
public final static field INSTANCE: RefreshQueue
|
||||
private final static @org.jetbrains.annotations.NotNull field any: java.lang.Object
|
||||
private final static @org.jetbrains.annotations.NotNull field workerThread: java.lang.Thread
|
||||
private method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getAny(): java.lang.Object
|
||||
public final @org.jetbrains.annotations.NotNull method getWorkerThread(): java.lang.Thread
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
public final class Kt1134Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SomeClass {
|
||||
public method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
public final class Kt1157Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SomeClass {
|
||||
public final static field INSTANCE: SomeClass
|
||||
private final static field work: SomeClass$work$1
|
||||
private method <init>(): void
|
||||
private final method foo(): void
|
||||
public final method run(): void
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt1247Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.Nullable method f(@org.jetbrains.annotations.Nullable p0: java.lang.Integer, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function2): java.lang.Integer
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
public final class Actor {
|
||||
private final @org.jetbrains.annotations.NotNull field code: java.lang.String
|
||||
public method <init>(): void
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public synthetic method <init>(p0: java.lang.String, p1: int, p2: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final @org.jetbrains.annotations.NotNull method getCode(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Creator {
|
||||
public abstract method create(): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public interface Factory
|
||||
|
||||
|
||||
public final class Kt1345Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyFactory {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method create(): Actor
|
||||
public synthetic method create(): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Kt1439Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method printtest(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyClass {
|
||||
private @org.jetbrains.annotations.NotNull field fnc: kotlin.jvm.functions.Function0
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFnc(): kotlin.jvm.functions.Function0
|
||||
public final method setFnc(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
public final @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
public final class Broken {
|
||||
public method <init>(): void
|
||||
public synthetic method invoke(): java.lang.Object
|
||||
public @org.jetbrains.annotations.NotNull method invoke(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1535Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Works {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method invoke(): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
public final class Kt1538Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method parseCatalogs(@org.jetbrains.annotations.Nullable p0: java.lang.Object): void
|
||||
public final static @org.jetbrains.annotations.NotNull method toHasMap(@org.jetbrains.annotations.Nullable p0: java.lang.Object): Pair
|
||||
}
|
||||
|
||||
|
||||
public final class Pair {
|
||||
private final field first: java.lang.Object
|
||||
private final field second: java.lang.Object
|
||||
public method <init>(p0: java.lang.Object, p1: java.lang.Object): void
|
||||
public final method component1(): java.lang.Object
|
||||
public final method component2(): java.lang.Object
|
||||
public synthetic static method copy$default(p0: Pair, p1: java.lang.Object, p2: java.lang.Object, p3: int, p4: java.lang.Object): Pair
|
||||
public final @org.jetbrains.annotations.NotNull method copy(p0: java.lang.Object, p1: java.lang.Object): Pair
|
||||
public method equals(p0: java.lang.Object): boolean
|
||||
public final method getFirst(): java.lang.Object
|
||||
public final method getSecond(): java.lang.Object
|
||||
public method hashCode(): int
|
||||
public method toString(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class Kt1578Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class Foo {
|
||||
private final @org.jetbrains.annotations.NotNull field bar: kotlin.jvm.functions.Function1
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method doBar(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getBar(): kotlin.jvm.functions.Function1
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1611Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class Kt1721Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class T {
|
||||
private final @org.jetbrains.annotations.NotNull field f: kotlin.jvm.functions.Function0
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
public final @org.jetbrains.annotations.Nullable method call(): java.lang.Object
|
||||
public final @org.jetbrains.annotations.NotNull method getF(): kotlin.jvm.functions.Function0
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Foo {
|
||||
private final @org.jetbrains.annotations.NotNull field f: kotlin.jvm.functions.Function1
|
||||
private field state: int
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1): void
|
||||
public final @org.jetbrains.annotations.NotNull method getF(): kotlin.jvm.functions.Function1
|
||||
public final method getState(): int
|
||||
public final method next(): int
|
||||
public final method setState(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1726Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
public final class Greeter {
|
||||
private @org.jetbrains.annotations.NotNull field name: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getName(): java.lang.String
|
||||
public final method greet(): void
|
||||
public final method setName(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1759Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
public final class Kt1891Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyList {
|
||||
private @org.jetbrains.annotations.Nullable field value: java.lang.Object
|
||||
public method <init>(): void
|
||||
public final method get(p0: int): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method getValue(): java.lang.Object
|
||||
public final method set(p0: int, p1: java.lang.Object): void
|
||||
public final method setValue(@org.jetbrains.annotations.Nullable p0: java.lang.Object): void
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Bar {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public interface Foo {
|
||||
public abstract @org.jetbrains.annotations.NotNull method xyzzy(@org.jetbrains.annotations.Nullable p0: java.lang.Object): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1918Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method buildFoo(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function1): Foo
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class A {
|
||||
private final @org.jetbrains.annotations.NotNull field f: kotlin.jvm.functions.Function0
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getF(): kotlin.jvm.functions.Function0
|
||||
}
|
||||
|
||||
|
||||
public final class Kt1976Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public final class Kt1980Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method calc(): int
|
||||
public final static method times(p0: int, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function0): void
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
public interface A {
|
||||
public abstract method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class B1 {
|
||||
public method <init>(): void
|
||||
public method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class B2 {
|
||||
private final field z: int
|
||||
public method <init>(p0: int): void
|
||||
public method foo(): int
|
||||
public final method getZ(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2224Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method f1(@org.jetbrains.annotations.NotNull p0: B1): int
|
||||
public final static method f2(@org.jetbrains.annotations.NotNull p0: B2): int
|
||||
public final static method f3(@org.jetbrains.annotations.NotNull p0: B2, p1: int): int
|
||||
public final static method f4(@org.jetbrains.annotations.NotNull p0: B1, p1: int, p2: int, p3: int): int
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class Kt2288Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class Test {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method clone(): Test
|
||||
public synthetic method clone(): java.lang.Object
|
||||
public @org.jetbrains.annotations.NotNull method toString(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
public final class A {
|
||||
public final static field Companion: A.Companion
|
||||
private final static field b: int
|
||||
private final static field c: int
|
||||
inner class A/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class A/Companion {
|
||||
inner class A/Companion
|
||||
private method <init>(): void
|
||||
public final method getB(): int
|
||||
public final method getC(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2384Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
public interface Formatter {
|
||||
public abstract @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.Nullable p0: java.lang.Object): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class JsonArray {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public interface JsonFormatter {
|
||||
inner class JsonFormatter/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.NotNull p0: java.util.Collection): JsonArray
|
||||
}
|
||||
|
||||
|
||||
public final class JsonFormatter/DefaultImpls {
|
||||
inner class JsonFormatter/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.NotNull p0: JsonFormatter, p1: java.util.Collection): JsonArray
|
||||
}
|
||||
|
||||
|
||||
public final class JsonObject {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2390Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface MultiFormatter {
|
||||
public abstract @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.NotNull p0: java.util.Collection): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class Project {
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class ProjectJsonFormatter {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.NotNull p0: java.util.Collection): JsonArray
|
||||
public @org.jetbrains.annotations.NotNull method format(@org.jetbrains.annotations.Nullable p0: Project): JsonObject
|
||||
public synthetic method format(p0: java.lang.Object): java.lang.Object
|
||||
public synthetic method format(p0: java.util.Collection): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
public abstract class HttpServer {
|
||||
public method <init>(): void
|
||||
public final method start(): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2391Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface LoggerAware {
|
||||
public abstract @org.jetbrains.annotations.NotNull method getLogger(): java.lang.StringBuilder
|
||||
}
|
||||
|
||||
|
||||
public final class MyHttpServer {
|
||||
private final @org.jetbrains.annotations.NotNull field logger: java.lang.StringBuilder
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method getLogger(): java.lang.StringBuilder
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
public final class Kt2395Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyList {
|
||||
public method <init>(): void
|
||||
public final method contains(p0: java.lang.Object): boolean
|
||||
public method contains(p0: java.lang.String): boolean
|
||||
public synthetic method get(p0: int): java.lang.Object
|
||||
public @org.jetbrains.annotations.NotNull method get(p0: int): java.lang.String
|
||||
public final method getModificationCount(): int
|
||||
public method getSize(): int
|
||||
public final method indexOf(p0: java.lang.Object): int
|
||||
public method indexOf(p0: java.lang.String): int
|
||||
public final method lastIndexOf(p0: java.lang.Object): int
|
||||
public method lastIndexOf(p0: java.lang.String): int
|
||||
public final method remove(p0: int): java.lang.String
|
||||
public final method remove(p0: java.lang.Object): boolean
|
||||
public method remove(p0: java.lang.String): boolean
|
||||
public method removeAt(p0: int): java.lang.String
|
||||
public final method size(): int
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class Kt2417Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
public interface test/A {
|
||||
inner class test/A/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method getC(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class test/A/DefaultImpls {
|
||||
inner class test/A/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method getC(p0: test.A): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface test/B {
|
||||
inner class test/B/DefaultImpls
|
||||
}
|
||||
|
||||
|
||||
public final class test/B/DefaultImpls {
|
||||
inner class test/B/DefaultImpls
|
||||
private static method getC(p0: test.B): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class test/C {
|
||||
private final field c: java.lang.String
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public class test/D {
|
||||
private final @org.jetbrains.annotations.NotNull field b: java.lang.String
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method getB(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method getC(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class test/Kt2477Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public abstract class AbstractClass {
|
||||
public method <init>(): void
|
||||
public abstract method getSome(): java.lang.Object
|
||||
public final method printSome(): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class Class {
|
||||
public method <init>(): void
|
||||
public synthetic method getSome(): java.lang.Object
|
||||
public @org.jetbrains.annotations.NotNull method getSome(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2480Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class Kt2482Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public final class Kt2485Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method f1(@org.jetbrains.annotations.Nullable p0: java.lang.Object): void
|
||||
public final static method f2(@org.jetbrains.annotations.Nullable p0: java.lang.Boolean): void
|
||||
public final static method f3(@org.jetbrains.annotations.NotNull p0: java.lang.Object): void
|
||||
public final static method f4(p0: boolean): void
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
public final class x/Kt249Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class x/Outer {
|
||||
public final static field Companion: x.Outer.Companion
|
||||
inner class x/Outer/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class x/Outer/Companion {
|
||||
inner class x/Outer/Companion
|
||||
inner class x/Outer/Companion/Inner
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class x/Outer/Companion/Inner {
|
||||
inner class x/Outer/Companion
|
||||
inner class x/Outer/Companion/Inner
|
||||
public method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
public final class foo/A {
|
||||
private final @org.jetbrains.annotations.NotNull field b: foo.B
|
||||
private final field c: int
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: foo.B): void
|
||||
public final @org.jetbrains.annotations.NotNull method getB(): foo.B
|
||||
public method getC(): int
|
||||
}
|
||||
|
||||
|
||||
public interface foo/B {
|
||||
inner class foo/B/DefaultImpls
|
||||
public abstract method getC(): int
|
||||
}
|
||||
|
||||
|
||||
public final class foo/B/DefaultImpls {
|
||||
inner class foo/B/DefaultImpls
|
||||
public static method getC(p0: foo.B): int
|
||||
}
|
||||
|
||||
|
||||
public final class foo/Kt2532Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
public class A {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class B {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class C {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface I
|
||||
|
||||
|
||||
public final class Kt2566Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
public class A {
|
||||
private final @org.jetbrains.annotations.NotNull field foo: java.lang.String
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method getFoo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class B {
|
||||
inner class B/E
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class B/E {
|
||||
private final @org.jetbrains.annotations.NotNull field foo: java.lang.String
|
||||
synthetic final field this$0: B
|
||||
inner class B/E
|
||||
public method <init>(p0: B): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFoo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class C {
|
||||
inner class C/D
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final class C/D {
|
||||
private final @org.jetbrains.annotations.NotNull field foo: java.lang.String
|
||||
synthetic final field this$0: C
|
||||
inner class C/D
|
||||
public method <init>(p0: C): void
|
||||
public final @org.jetbrains.annotations.NotNull method getFoo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2566_2Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class Kt2607Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
public final class example2/Context {
|
||||
public final static field INSTANCE: example2.Context
|
||||
inner class example2/Context/OsType
|
||||
private method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public static enum class example2/Context/OsType {
|
||||
public final static field LINUX: example2.Context.OsType
|
||||
public final static field MACOSX: example2.Context.OsType
|
||||
public final static field OK: example2.Context.OsType
|
||||
public final static field OTHER: example2.Context.OsType
|
||||
public final static field WIN2000: example2.Context.OsType
|
||||
public final static field WINDOWS: example2.Context.OsType
|
||||
inner class example2/Context/OsType
|
||||
protected method <init>(p0: java.lang.String, p1: int): void
|
||||
public static method valueOf(p0: java.lang.String): example2.Context.OsType
|
||||
public static method values(): example2.Context.OsType[]
|
||||
}
|
||||
|
||||
|
||||
public final class example2/Kt2626Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
public final class C {
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method rangeTo(p0: int): IntRange
|
||||
}
|
||||
|
||||
|
||||
public final class IntRange {
|
||||
public method <init>(): void
|
||||
public final method contains(p0: int): boolean
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2711Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
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 class Factory {
|
||||
public method <init>(p0: int): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt2784Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
public final class ComplexClass {
|
||||
private synthetic final field $$delegate_0: SimpleClass
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method qux(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt285Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class SimpleClass {
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Trait {
|
||||
inner class Trait/DefaultImpls
|
||||
public abstract @org.jetbrains.annotations.NotNull method bar(): java.lang.String
|
||||
public abstract @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Trait/DefaultImpls {
|
||||
inner class Trait/DefaultImpls
|
||||
public static @org.jetbrains.annotations.NotNull method foo(p0: Trait): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
public interface A {
|
||||
public abstract @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Base {
|
||||
private final @org.jetbrains.annotations.NotNull field result: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public class Derived {
|
||||
private synthetic final field $$delegate_0: Base
|
||||
public method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method getResult(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Kt3001Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z {
|
||||
public method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class KeySpan {
|
||||
private final @org.jetbrains.annotations.NotNull field left: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getLeft(): java.lang.String
|
||||
public final method matches(@org.jetbrains.annotations.NotNull p0: java.lang.String): boolean
|
||||
}
|
||||
|
||||
|
||||
public final class Kt3114Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
public interface A {
|
||||
public abstract method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public interface B {
|
||||
public abstract method foo(): int
|
||||
}
|
||||
|
||||
|
||||
public final class Kt3414Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z {
|
||||
private final @org.jetbrains.annotations.NotNull field a: A
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: A): void
|
||||
public method foo(): int
|
||||
public final @org.jetbrains.annotations.NotNull method getA(): A
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt343Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method launch(@org.jetbrains.annotations.NotNull p0: kotlin.jvm.functions.Function0): void
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
public interface A {
|
||||
public abstract @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface B {
|
||||
public abstract @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface C
|
||||
|
||||
|
||||
public final class Kt3546Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyClass {
|
||||
private final @org.jetbrains.annotations.NotNull field value: C
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: C): void
|
||||
public final @org.jetbrains.annotations.NotNull method getValue(): C
|
||||
public @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Z {
|
||||
private final @org.jetbrains.annotations.NotNull field param: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getParam(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method test(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public final class Kt454Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
public final class Kt471Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method test1(): boolean
|
||||
public final static method test2(): boolean
|
||||
public final static method test3(): boolean
|
||||
public final static method test4(): boolean
|
||||
public final static method test5(): boolean
|
||||
public final static method test6(): boolean
|
||||
public final static method test7(): boolean
|
||||
public final static method test8(): boolean
|
||||
}
|
||||
|
||||
|
||||
public final class MNR {
|
||||
private @org.jetbrains.annotations.NotNull field ref: MyNumber
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: MyNumber): void
|
||||
public final @org.jetbrains.annotations.NotNull method getRef(): MyNumber
|
||||
public final method setRef(@org.jetbrains.annotations.NotNull p0: MyNumber): void
|
||||
}
|
||||
|
||||
|
||||
public final class MyArrayList {
|
||||
private field value17: java.lang.Object
|
||||
private field value39: java.lang.Object
|
||||
public method <init>(): void
|
||||
public final method get(p0: int): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method set(p0: int, p1: java.lang.Object): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class MyNumber {
|
||||
private final field i: int
|
||||
public method <init>(p0: int): void
|
||||
public final method getI(): int
|
||||
public final @org.jetbrains.annotations.NotNull method inc(): MyNumber
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
public final class A {
|
||||
private field xb: byte
|
||||
private @org.jetbrains.annotations.Nullable field xbn: java.lang.Byte
|
||||
private @org.jetbrains.annotations.Nullable field xbnn: java.lang.Byte
|
||||
private field xd: double
|
||||
private @org.jetbrains.annotations.Nullable field xdn: java.lang.Double
|
||||
private @org.jetbrains.annotations.Nullable field xdnn: java.lang.Double
|
||||
private field xf: float
|
||||
private @org.jetbrains.annotations.Nullable field xfn: java.lang.Float
|
||||
private @org.jetbrains.annotations.Nullable field xfnn: java.lang.Float
|
||||
private field xi: int
|
||||
private @org.jetbrains.annotations.Nullable field xin: java.lang.Integer
|
||||
private @org.jetbrains.annotations.Nullable field xinn: java.lang.Integer
|
||||
private field xl: long
|
||||
private @org.jetbrains.annotations.Nullable field xln: java.lang.Long
|
||||
private @org.jetbrains.annotations.Nullable field xlnn: java.lang.Long
|
||||
private field xs: short
|
||||
private @org.jetbrains.annotations.Nullable field xsn: java.lang.Short
|
||||
private @org.jetbrains.annotations.Nullable field xsnn: java.lang.Short
|
||||
public method <init>(): void
|
||||
public final method getXb(): byte
|
||||
public final @org.jetbrains.annotations.Nullable method getXbn(): java.lang.Byte
|
||||
public final @org.jetbrains.annotations.Nullable method getXbnn(): java.lang.Byte
|
||||
public final method getXd(): double
|
||||
public final @org.jetbrains.annotations.Nullable method getXdn(): java.lang.Double
|
||||
public final @org.jetbrains.annotations.Nullable method getXdnn(): java.lang.Double
|
||||
public final method getXf(): float
|
||||
public final @org.jetbrains.annotations.Nullable method getXfn(): java.lang.Float
|
||||
public final @org.jetbrains.annotations.Nullable method getXfnn(): java.lang.Float
|
||||
public final method getXi(): int
|
||||
public final @org.jetbrains.annotations.Nullable method getXin(): java.lang.Integer
|
||||
public final @org.jetbrains.annotations.Nullable method getXinn(): java.lang.Integer
|
||||
public final method getXl(): long
|
||||
public final @org.jetbrains.annotations.Nullable method getXln(): java.lang.Long
|
||||
public final @org.jetbrains.annotations.Nullable method getXlnn(): java.lang.Long
|
||||
public final method getXs(): short
|
||||
public final @org.jetbrains.annotations.Nullable method getXsn(): java.lang.Short
|
||||
public final @org.jetbrains.annotations.Nullable method getXsnn(): java.lang.Short
|
||||
public final method setXb(p0: byte): void
|
||||
public final method setXbn(@org.jetbrains.annotations.Nullable p0: java.lang.Byte): void
|
||||
public final method setXbnn(@org.jetbrains.annotations.Nullable p0: java.lang.Byte): void
|
||||
public final method setXd(p0: double): void
|
||||
public final method setXdn(@org.jetbrains.annotations.Nullable p0: java.lang.Double): void
|
||||
public final method setXdnn(@org.jetbrains.annotations.Nullable p0: java.lang.Double): void
|
||||
public final method setXf(p0: float): void
|
||||
public final method setXfn(@org.jetbrains.annotations.Nullable p0: java.lang.Float): void
|
||||
public final method setXfnn(@org.jetbrains.annotations.Nullable p0: java.lang.Float): void
|
||||
public final method setXi(p0: int): void
|
||||
public final method setXin(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): void
|
||||
public final method setXinn(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): void
|
||||
public final method setXl(p0: long): void
|
||||
public final method setXln(@org.jetbrains.annotations.Nullable p0: java.lang.Long): void
|
||||
public final method setXlnn(@org.jetbrains.annotations.Nullable p0: java.lang.Long): void
|
||||
public final method setXs(p0: short): void
|
||||
public final method setXsn(@org.jetbrains.annotations.Nullable p0: java.lang.Short): void
|
||||
public final method setXsnn(@org.jetbrains.annotations.Nullable p0: java.lang.Short): void
|
||||
}
|
||||
|
||||
|
||||
public final class Kt48Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
public final class Kt496Kt {
|
||||
private static field x: boolean
|
||||
private static field z: int
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method getX(): boolean
|
||||
public final static method getZ(): int
|
||||
public final static method setX(p0: boolean): void
|
||||
public final static method setZ(p0: int): void
|
||||
public final static method test1(): boolean
|
||||
public final static method test2(): boolean
|
||||
public final static method test3(): int
|
||||
public final static method test4(): int
|
||||
public final static method test5(): int
|
||||
public final static method test6(): int
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
public final class Kt500Kt {
|
||||
private static field GUEST_USER_ID: int
|
||||
private final static field USER_ID: int
|
||||
private final static field USER_ID_2: int
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method getGUEST_USER_ID(): int
|
||||
public final static method getUSER_ID(): int
|
||||
public final static method getUSER_ID_2(): int
|
||||
public final static method getUserIdFromEnvironment(): int
|
||||
public final static method setGUEST_USER_ID(p0: int): void
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
public final class Kt501Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method test1(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class Reluctant {
|
||||
public method <init>(): void
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
public class mult_constructors_3_bug/Identifier {
|
||||
public final static field Companion: mult_constructors_3_bug.Identifier.Companion
|
||||
private field myNullable: boolean
|
||||
inner class mult_constructors_3_bug/Identifier/Companion
|
||||
public method <init>(): void
|
||||
}
|
||||
|
||||
|
||||
public final static class mult_constructors_3_bug/Identifier/Companion {
|
||||
inner class mult_constructors_3_bug/Identifier/Companion
|
||||
private method <init>(): void
|
||||
public @org.jetbrains.annotations.NotNull method init(p0: boolean): mult_constructors_3_bug.Identifier
|
||||
}
|
||||
|
||||
|
||||
public final class mult_constructors_3_bug/Kt504Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt508Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.Nullable method set(@org.jetbrains.annotations.NotNull p0: java.util.Map, p1: java.lang.Object, p2: java.lang.Object): java.lang.Object
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
public final class Kt5347Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method test1(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method test2(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method test3(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method test4(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class TestClass {
|
||||
private final @org.jetbrains.annotations.NotNull field x: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method foo(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method getX(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
public final class Actor {
|
||||
private final @org.jetbrains.annotations.NotNull field firstName: java.lang.String
|
||||
private final field id: int
|
||||
private final @org.jetbrains.annotations.NotNull field lastName: java.lang.String
|
||||
public method <init>(p0: int, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: java.lang.String): void
|
||||
public final method component1(): int
|
||||
public final @org.jetbrains.annotations.NotNull method component2(): java.lang.String
|
||||
public final @org.jetbrains.annotations.NotNull method component3(): java.lang.String
|
||||
public synthetic static method copy$default(p0: Actor, p1: int, p2: java.lang.String, p3: java.lang.String, p4: int, p5: java.lang.Object): Actor
|
||||
public final @org.jetbrains.annotations.NotNull method copy(p0: int, @org.jetbrains.annotations.NotNull p1: java.lang.String, @org.jetbrains.annotations.NotNull p2: java.lang.String): Actor
|
||||
public method equals(p0: java.lang.Object): boolean
|
||||
public final @org.jetbrains.annotations.NotNull method getFirstName(): java.lang.String
|
||||
public @org.jetbrains.annotations.NotNull method getId(): java.lang.Integer
|
||||
public synthetic method getId(): java.lang.Object
|
||||
public final @org.jetbrains.annotations.NotNull method getLastName(): java.lang.String
|
||||
public method hashCode(): int
|
||||
public method toString(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public interface Id {
|
||||
public abstract method getId(): java.lang.Object
|
||||
}
|
||||
|
||||
|
||||
public final class Kt6136Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
public final class Kt633Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class MyArray {
|
||||
private final @org.jetbrains.annotations.NotNull field a: mInt[]
|
||||
public method <init>(): void
|
||||
public final @org.jetbrains.annotations.NotNull method get(@org.jetbrains.annotations.NotNull p0: mInt): mInt
|
||||
public final @org.jetbrains.annotations.NotNull method getA(): mInt[]
|
||||
public final method set(@org.jetbrains.annotations.NotNull p0: mInt, @org.jetbrains.annotations.NotNull p1: mInt): void
|
||||
}
|
||||
|
||||
|
||||
public final class mInt {
|
||||
private final field i: int
|
||||
public method <init>(p0: int): void
|
||||
public final method getI(): int
|
||||
public final @org.jetbrains.annotations.NotNull method inc(): mInt
|
||||
public final @org.jetbrains.annotations.NotNull method plus(p0: int): mInt
|
||||
public @org.jetbrains.annotations.NotNull method toString(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
public final class CalculatorConstants {
|
||||
private final field airCondMult: double
|
||||
private final field autoTransMult: double
|
||||
private final field averageContribution: double
|
||||
private final field co2PerKerosene: double
|
||||
private final field defraFactor: double
|
||||
private final field detour: double
|
||||
private final field freight: double
|
||||
private final @org.jetbrains.annotations.Nullable field hybridDefault: java.lang.String
|
||||
private final field id: long
|
||||
private final field loop: double
|
||||
private final field planeCondition: double
|
||||
private final field returnContribution: double
|
||||
private final field rfi: double
|
||||
private final field rfiAltitude: double
|
||||
private final field singleContribution: double
|
||||
private final @org.jetbrains.annotations.NotNull field status: java.lang.String
|
||||
private final field taxi: double
|
||||
private final field travelClassOne: double
|
||||
public method <init>(): void
|
||||
public method <init>(p0: long, p1: double, p2: double, p3: double, p4: double, p5: double, p6: double, p7: double, p8: double, p9: double, p10: double, p11: double, p12: double, p13: double, p14: double, @org.jetbrains.annotations.Nullable p15: java.lang.String, p16: double, @org.jetbrains.annotations.NotNull p17: java.lang.String): void
|
||||
public synthetic method <init>(p0: long, p1: double, p2: double, p3: double, p4: double, p5: double, p6: double, p7: double, p8: double, p9: double, p10: double, p11: double, p12: double, p13: double, p14: double, p15: java.lang.String, p16: double, p17: java.lang.String, p18: int, p19: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final method getAirCondMult(): double
|
||||
public final method getAutoTransMult(): double
|
||||
public final method getAverageContribution(): double
|
||||
public final method getCo2PerKerosene(): double
|
||||
public final method getDefraFactor(): double
|
||||
public final method getDetour(): double
|
||||
public final method getFreight(): double
|
||||
public final @org.jetbrains.annotations.Nullable method getHybridDefault(): java.lang.String
|
||||
public final method getId(): long
|
||||
public final method getLoop(): double
|
||||
public final method getPlaneCondition(): double
|
||||
public final method getReturnContribution(): double
|
||||
public final method getRfi(): double
|
||||
public final method getRfiAltitude(): double
|
||||
public final method getSingleContribution(): double
|
||||
public final @org.jetbrains.annotations.NotNull method getStatus(): java.lang.String
|
||||
public final method getTaxi(): double
|
||||
public final method getTravelClassOne(): double
|
||||
}
|
||||
|
||||
|
||||
public final class Kt6816Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
public final class Kt707Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method mapHead(@org.jetbrains.annotations.NotNull p0: List, @org.jetbrains.annotations.NotNull p1: kotlin.jvm.functions.Function1): List
|
||||
}
|
||||
|
||||
|
||||
public final class List {
|
||||
private final field head: java.lang.Object
|
||||
private final @org.jetbrains.annotations.Nullable field tail: List
|
||||
public method <init>(p0: java.lang.Object, @org.jetbrains.annotations.Nullable p1: List): void
|
||||
public synthetic method <init>(p0: java.lang.Object, p1: List, p2: int, p3: kotlin.jvm.internal.DefaultConstructorMarker): void
|
||||
public final method getHead(): java.lang.Object
|
||||
public final @org.jetbrains.annotations.Nullable method getTail(): List
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt723Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method inc(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): int
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt725Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method inc(@org.jetbrains.annotations.Nullable p0: java.lang.Integer): int
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
public final class Kt8011Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method testFun1(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
public final class Kt8011aKt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method testFun1(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method testFun2(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method testFun3(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
public final static @org.jetbrains.annotations.NotNull method testFun4(@org.jetbrains.annotations.NotNull p0: java.lang.String): java.lang.String
|
||||
}
|
||||
|
||||
|
||||
public final class TestClass {
|
||||
private final @org.jetbrains.annotations.NotNull field str: java.lang.String
|
||||
private @org.jetbrains.annotations.Nullable field xx: java.lang.String
|
||||
public method <init>(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
||||
public final @org.jetbrains.annotations.NotNull method getStr(): java.lang.String
|
||||
public final @org.jetbrains.annotations.Nullable method getXx(): java.lang.String
|
||||
public final method setXx(@org.jetbrains.annotations.Nullable p0: java.lang.String): void
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
public final class Kt903Kt {
|
||||
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
||||
public final static method plus(p0: int, @org.jetbrains.annotations.Nullable p1: java.lang.Integer): int
|
||||
}
|
||||
|
||||
|
||||
public class PerfectNumberFinder {
|
||||
public method <init>(): void
|
||||
public method isPerfect(p0: int): boolean
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user