Revert "Sort class members to ensure deterministic builds"

This reverts commit 4bf63a9539.
This commit is contained in:
Ivan Gavrilovic
2021-01-08 19:48:07 +00:00
committed by Yan Zhulanow
parent 77f8c1e58f
commit a320152a03
70 changed files with 1279 additions and 1382 deletions
@@ -1,93 +0,0 @@
/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.gradle
import org.jetbrains.kotlin.gradle.util.allJavaFiles
import org.junit.Test
import java.io.File
import kotlin.test.assertEquals
/** Tests that the outputs of a build are deterministic. */
class DeterministicBuildIT : BaseGradleIT() {
@Test
fun `test KaptGenerateStubsTask - KT-40882`() = with(
Project("simple", directoryPrefix = "kapt2")
) {
setupWorkingDir()
projectDir
.resolve("src/main/java/Foo.kt")
.writeText(
"""
class Foo : Bar {
// The fields and methods are ordered such that any sorting by KGP will be detected.
val fooField1 = 1
val fooField3 = 3
val fooField2 = 2
fun fooMethod1() {}
fun fooMethod3() {}
fun fooMethod2() {}
}
""".trimIndent()
)
projectDir
.resolve("src/main/java/Bar.kt")
.writeText(
"""
interface Bar {
val barField1 = 1
val barField3 = 3
val barField2 = 2
fun barMethod1() {}
fun barMethod3() {}
fun barMethod2() {}
}
""".trimIndent()
)
val buildAndSnapshotStubFiles: () -> Map<File, String> = {
lateinit var stubFiles: Map<File, String>
build(":kaptGenerateStubsKotlin") {
assertSuccessful()
assertTasksExecuted(":kaptGenerateStubsKotlin")
stubFiles = fileInWorkingDir("build/tmp/kapt3/stubs").allJavaFiles().map {
it to it.readText()
}.toMap()
}
stubFiles
}
// Run the first build
val stubFilesAfterFirstBuild = buildAndSnapshotStubFiles()
// Make a change
projectDir.resolve("src/main/java/Foo.kt").also {
it.writeText(
"""
class Foo : Bar {
val fooField1 = 1
val fooField3 = 3
val fooField2 = 2
fun fooMethod1() { println("Method body changed!") }
fun fooMethod3() {}
fun fooMethod2() {}
}
""".trimIndent()
)
}
// Run the second build
val stubFilesAfterSecondBuild = buildAndSnapshotStubFiles()
// Check that the build outputs are deterministic
assertEquals(stubFilesAfterFirstBuild.size, stubFilesAfterSecondBuild.size)
for (file in stubFilesAfterFirstBuild.keys) {
val fileContentsAfterFirstBuild = stubFilesAfterFirstBuild[file]
val fileContentsAfterSecondBuild = stubFilesAfterSecondBuild[file]
assertEquals(fileContentsAfterFirstBuild, fileContentsAfterSecondBuild)
}
}
}
@@ -399,9 +399,9 @@ open class Kapt3IT : Kapt3BaseIT() {
val actual = getErrorMessages() val actual = getErrorMessages()
// try as 0 starting lines first, then as 1 starting line // try as 0 starting lines first, then as 1 starting line
try { try {
Assert.assertEquals(genJavaErrorString(8, 15), actual) Assert.assertEquals(genJavaErrorString(8, 16), actual)
} catch (e: AssertionError) { } catch (e: AssertionError) {
Assert.assertEquals(genJavaErrorString(9, 16), actual) Assert.assertEquals(genJavaErrorString(9, 17), actual)
} }
} }
@@ -387,21 +387,11 @@ class ClassFileToSourceStubConverter(val kaptContext: KaptContextForStubGenerati
) )
} }
// Class methods and fields are currently sorted at serialization (see DescriptorSerializer.sort) and at deserialization (see val fields = mapJList<FieldNode, JCTree>(clazz.fields) {
// DeserializedMemberScope.OptimizedImplementation#addMembers). Therefore, the contents of the generated stub files are sorted in
// incremental builds but not in clean builds.
// The consequence is that the contents of the generated stub files may not be consistent across a clean build and an incremental
// build, making the build non-deterministic and dependent tasks run unnecessarily (see KT-40882).
// To work around that, we always sort class methods and fields when outputting stub files. Once we remove the sorting at both
// serialization and deserialization (KT-20980), we can remove this workaround.
val sortedFields = clazz.fields.toList().sortedWith(compareBy({ it.name }, { it.desc }))
val sortedMethods = clazz.methods.toList().sortedWith(compareBy({ it.name }, { it.desc }))
val fields = mapJList<FieldNode, JCTree>(sortedFields) {
if (it.isEnumValue()) null else convertField(it, clazz, lineMappings, packageFqName) if (it.isEnumValue()) null else convertField(it, clazz, lineMappings, packageFqName)
} }
val methods = mapJList<MethodNode, JCTree>(sortedMethods) { val methods = mapJList<MethodNode, JCTree>(clazz.methods) {
if (isEnum) { if (isEnum) {
if (it.name == "values" && it.desc == "()[L${clazz.name};") return@mapJList null if (it.name == "values" && it.desc == "()[L${clazz.name};") return@mapJList null
if (it.name == "valueOf" && it.desc == "(Ljava/lang/String;)L${clazz.name};") return@mapJList null if (it.name == "valueOf" && it.desc == "(Ljava/lang/String;)L${clazz.name};") return@mapJList null
@@ -5,14 +5,14 @@ public enum E {
/*public static final*/ X /* = new E() */, /*public static final*/ X /* = new E() */,
/*public static final*/ Y /* = new E() */; /*public static final*/ Y /* = new E() */;
E() {
}
public abstract void a(); public abstract void a();
public final void b() { public final void b() {
} }
E() {
}
@kotlin.Metadata() @kotlin.Metadata()
public static final class Obj { public static final class Obj {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -42,13 +42,13 @@ public enum E2 {
/*public static final*/ X /* = new E2() */, /*public static final*/ X /* = new E2() */,
/*public static final*/ Y /* = new E2() */; /*public static final*/ Y /* = new E2() */;
public abstract void a();
E2(int n) { E2(int n) {
} }
E2(java.lang.String s) { E2(java.lang.String s) {
} }
public abstract void a();
} }
//////////////////// ////////////////////
@@ -63,13 +63,13 @@ public enum E3 {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String a = null; private final java.lang.String a = null;
E3(java.lang.String a) {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
} }
E3(java.lang.String a) {
}
} }
//////////////////// ////////////////////
@@ -86,9 +86,6 @@ public enum E4 {
private final long c = 0L; private final long c = 0L;
private final boolean d = false; private final boolean d = false;
E4(java.lang.String a, int b, long c, boolean d) {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
@@ -105,4 +102,7 @@ public enum E4 {
public final boolean getD() { public final boolean getD() {
return false; return false;
} }
E4(java.lang.String a, int b, long c, boolean d) {
}
} }
@@ -3,15 +3,15 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract class Base { public abstract class Base {
public Base() {
super();
}
protected abstract void doJob(@org.jetbrains.annotations.NotNull() protected abstract void doJob(@org.jetbrains.annotations.NotNull()
java.lang.String job, int delay); java.lang.String job, int delay);
protected abstract <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull() protected abstract <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
T job, int delay); T job, int delay);
public Base() {
super();
}
} }
//////////////////// ////////////////////
@@ -22,10 +22,6 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Impl extends Base { public final class Impl extends Base {
public Impl() {
super();
}
@java.lang.Override() @java.lang.Override()
protected void doJob(@org.jetbrains.annotations.NotNull() protected void doJob(@org.jetbrains.annotations.NotNull()
java.lang.String job, int delay) { java.lang.String job, int delay) {
@@ -35,4 +31,8 @@ public final class Impl extends Base {
protected <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull() protected <T extends java.lang.CharSequence>void doJobGeneric(@org.jetbrains.annotations.NotNull()
T job, int delay) { T job, int delay) {
} }
public Impl() {
super();
}
} }
@@ -4,34 +4,19 @@ import a.b.ABC;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test { public final class Test {
public Test.MyDate date;
public java.util.concurrent.TimeUnit timeUnit;
public java.util.concurrent.TimeUnit microseconds;
public a.b.ABC abc; public a.b.ABC abc;
public bcd bcd; public bcd bcd;
public Test.MyDate date;
public java.util.concurrent.TimeUnit microseconds;
public java.util.concurrent.TimeUnit timeUnit;
public Test() {
super();
}
@org.jetbrains.annotations.NotNull()
public final a.b.ABC getAbc() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final bcd getBcd() {
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final Test.MyDate getDate() { public final Test.MyDate getDate() {
return null; return null;
} }
@org.jetbrains.annotations.NotNull() public final void setDate(@org.jetbrains.annotations.NotNull()
public final java.util.concurrent.TimeUnit getMicroseconds() { Test.MyDate p0) {
return null;
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -39,34 +24,45 @@ public final class Test {
return null; return null;
} }
public final void setAbc(@org.jetbrains.annotations.NotNull() public final void setTimeUnit(@org.jetbrains.annotations.NotNull()
a.b.ABC p0) { java.util.concurrent.TimeUnit p0) {
} }
public final void setBcd(@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
bcd p0) { public final java.util.concurrent.TimeUnit getMicroseconds() {
} return null;
public final void setDate(@org.jetbrains.annotations.NotNull()
Test.MyDate p0) {
} }
public final void setMicroseconds(@org.jetbrains.annotations.NotNull() public final void setMicroseconds(@org.jetbrains.annotations.NotNull()
java.util.concurrent.TimeUnit p0) { java.util.concurrent.TimeUnit p0) {
} }
public final void setTimeUnit(@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
java.util.concurrent.TimeUnit p0) { public final a.b.ABC getAbc() {
return null;
}
public final void setAbc(@org.jetbrains.annotations.NotNull()
a.b.ABC p0) {
}
@org.jetbrains.annotations.NotNull()
public final bcd getBcd() {
return null;
}
public final void setBcd(@org.jetbrains.annotations.NotNull()
bcd p0) {
}
public Test() {
super();
} }
@kotlin.Metadata() @kotlin.Metadata()
public static final class MyDate { public static final class MyDate {
public Test.MyDate date2; public Test.MyDate date2;
public MyDate() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final Test.MyDate getDate2() { public final Test.MyDate getDate2() {
return null; return null;
@@ -75,6 +71,10 @@ public final class Test {
public final void setDate2(@org.jetbrains.annotations.NotNull() public final void setDate2(@org.jetbrains.annotations.NotNull()
Test.MyDate p0) { Test.MyDate p0) {
} }
public MyDate() {
super();
}
} }
} }
@@ -89,10 +89,6 @@ import a.b.ABC;
public final class Test2 { public final class Test2 {
public java.util.Date date; public java.util.Date date;
public Test2() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.util.Date getDate() { public final java.util.Date getDate() {
return null; return null;
@@ -101,4 +97,8 @@ public final class Test2 {
public final void setDate(@org.jetbrains.annotations.NotNull() public final void setDate(@org.jetbrains.annotations.NotNull()
java.util.Date p0) { java.util.Date p0) {
} }
public Test2() {
super();
}
} }
@@ -14,23 +14,23 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Anno2 { public abstract @interface Anno2 {
public abstract int i() default 5;
public abstract java.lang.String s() default "ABC";
public abstract int[] ii() default {1, 2, 3};
public abstract java.lang.String[] ss() default {"A", "B"};
public abstract Anno1 a(); public abstract Anno1 a();
public abstract java.lang.Class<?>[] classes();
public abstract java.lang.Class<?> clazz();
public abstract Colors color() default Colors.BLACK; public abstract Colors color() default Colors.BLACK;
public abstract Colors[] colors() default {Colors.BLACK, Colors.WHITE}; public abstract Colors[] colors() default {Colors.BLACK, Colors.WHITE};
public abstract int i() default 5; public abstract java.lang.Class<?> clazz();
public abstract int[] ii() default {1, 2, 3}; public abstract java.lang.Class<?>[] classes();
public abstract java.lang.String s() default "ABC";
public abstract java.lang.String[] ss() default {"A", "B"};
} }
//////////////////// ////////////////////
@@ -103,30 +103,30 @@ public final class TestAnno2 {
@Anno3(value = "field") @Anno3(value = "field")
private java.lang.String b = "property initializer"; private java.lang.String b = "property initializer";
public TestAnno2() {
super();
}
@Anno1() @Anno1()
public final void a(@org.jetbrains.annotations.NotNull() public final void a(@org.jetbrains.annotations.NotNull()
@Anno3(value = "param-pam-pam") @Anno3(value = "param-pam-pam")
java.lang.String param) { java.lang.String param) {
} }
@Anno3(value = "property")
@java.lang.Deprecated()
public static void getB$annotations() {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@Anno3(value = "getter") @Anno3(value = "getter")
public final java.lang.String getB() { public final java.lang.String getB() {
return null; return null;
} }
@Anno3(value = "property")
@java.lang.Deprecated()
public static void getB$annotations() {
}
@Anno3(value = "setter") @Anno3(value = "setter")
public final void setB(@org.jetbrains.annotations.NotNull() public final void setB(@org.jetbrains.annotations.NotNull()
@Anno3(value = "setparam") @Anno3(value = "setparam")
java.lang.String p0) { java.lang.String p0) {
} }
public TestAnno2() {
super();
}
} }
@@ -23,10 +23,10 @@ public final class AnnotationsTest {
super(); super();
} }
@org.jetbrains.annotations.NotNull() @Anno(value = "top-level-fun")
public static final java.lang.String getTopLevelVal(@Anno(value = "top-level-val-receiver") public static final void topLevelFun(@org.jetbrains.annotations.NotNull()
int $this$topLevelVal) { @Anno(value = "top-level-fun-receiver")
return null; java.lang.String $this$topLevelFun) {
} }
@Anno(value = "top-level-val") @Anno(value = "top-level-val")
@@ -34,10 +34,10 @@ public final class AnnotationsTest {
public static void getTopLevelVal$annotations(int p0) { public static void getTopLevelVal$annotations(int p0) {
} }
@Anno(value = "top-level-fun") @org.jetbrains.annotations.NotNull()
public static final void topLevelFun(@org.jetbrains.annotations.NotNull() public static final java.lang.String getTopLevelVal(@Anno(value = "top-level-val-receiver")
@Anno(value = "top-level-fun-receiver") int $this$topLevelVal) {
java.lang.String $this$topLevelFun) { return null;
} }
} }
@@ -56,14 +56,14 @@ public enum Enum {
/*public static final*/ BLACK /* = new Enum() */; /*public static final*/ BLACK /* = new Enum() */;
private final int x = 0; private final int x = 0;
public final int getX() {
return 0;
}
@Anno(value = "enum-constructor") @Anno(value = "enum-constructor")
Enum(@Anno(value = "x") Enum(@Anno(value = "x")
int x) { int x) {
} }
public final int getX() {
return 0;
}
} }
//////////////////// ////////////////////
@@ -78,39 +78,39 @@ public abstract class Test {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private java.lang.String v; private java.lang.String v;
@Anno(value = "test-constructor")
protected Test(@org.jetbrains.annotations.NotNull()
@Anno(value = "v-param")
java.lang.String v) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@Anno(value = "abstract-method") @Anno(value = "abstract-method")
public abstract java.lang.String abstractMethod(); public abstract java.lang.String abstractMethod();
@org.jetbrains.annotations.NotNull()
public abstract java.lang.String getAbstractVal();
@Anno(value = "abstract-val") @Anno(value = "abstract-val")
@java.lang.Deprecated() @java.lang.Deprecated()
public static void getAbstractVal$annotations() { public static void getAbstractVal$annotations() {
} }
@org.jetbrains.annotations.NotNull()
public abstract java.lang.String getAbstractVal();
@Anno(value = "v-property")
@java.lang.Deprecated()
public static void getV$annotations() {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@Anno(value = "v-get") @Anno(value = "v-get")
public final java.lang.String getV() { public final java.lang.String getV() {
return null; return null;
} }
@Anno(value = "v-property")
@java.lang.Deprecated()
public static void getV$annotations() {
}
@Anno(value = "v-set") @Anno(value = "v-set")
public final void setV(@org.jetbrains.annotations.NotNull() public final void setV(@org.jetbrains.annotations.NotNull()
@Anno(value = "v-setparam") @Anno(value = "v-setparam")
java.lang.String p0) { java.lang.String p0) {
} }
@Anno(value = "test-constructor")
protected Test(@org.jetbrains.annotations.NotNull()
@Anno(value = "v-param")
java.lang.String v) {
super();
}
} }
@@ -16,8 +16,10 @@ public final class Bar {
@FieldAnno() @FieldAnno()
private final java.lang.String a = ""; private final java.lang.String a = "";
public Bar() { @Anno()
super(); @PropertyAnno()
@java.lang.Deprecated()
public static void getA$annotations() {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -25,10 +27,8 @@ public final class Bar {
return null; return null;
} }
@Anno() public Bar() {
@PropertyAnno() super();
@java.lang.Deprecated()
public static void getA$annotations() {
} }
} }
@@ -43,14 +43,14 @@ public final class Baz {
@FieldAnno() @FieldAnno()
public final java.lang.String a = ""; public final java.lang.String a = "";
public Baz() {
super();
}
@Anno() @Anno()
@java.lang.Deprecated() @java.lang.Deprecated()
public static void getA$annotations() { public static void getA$annotations() {
} }
public Baz() {
super();
}
} }
//////////////////// ////////////////////
@@ -76,11 +76,9 @@ public final class Foo {
@FieldAnno() @FieldAnno()
private final java.lang.String a = null; private final java.lang.String a = null;
public Foo(@org.jetbrains.annotations.NotNull() @PropertyAnno()
@Anno() @java.lang.Deprecated()
@ParameterAnno() public static void getA$annotations() {
java.lang.String a) {
super();
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -88,9 +86,11 @@ public final class Foo {
return null; return null;
} }
@PropertyAnno() public Foo(@org.jetbrains.annotations.NotNull()
@java.lang.Deprecated() @Anno()
public static void getA$annotations() { @ParameterAnno()
java.lang.String a) {
super();
} }
} }
+41 -41
View File
@@ -17,11 +17,11 @@ public enum EnumError {
/*public static final*/ One /* = new EnumError() */, /*public static final*/ One /* = new EnumError() */,
/*public static final*/ Two /* = new EnumError() */; /*public static final*/ Two /* = new EnumError() */;
EnumError() {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public abstract java.lang.String doIt(); public abstract java.lang.String doIt();
EnumError() {
}
} }
//////////////////// ////////////////////
@@ -65,31 +65,6 @@ public final class Test {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String prop2 = ""; private final java.lang.String prop2 = "";
public Test() {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getProp2() {
return null;
}
/**
* prop2.
*/
@Anno()
@java.lang.Deprecated()
public static void getProp2$annotations() {
}
/**
* get.
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getProp3() {
return null;
}
/** /**
* method(). * method().
*/ */
@@ -109,12 +84,37 @@ public final class Test {
java.lang.String a) { java.lang.String a) {
} }
/**
* prop2.
*/
@Anno()
@java.lang.Deprecated()
public static void getProp2$annotations() {
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getProp2() {
return null;
}
/**
* get.
*/
@org.jetbrains.annotations.NotNull()
public final java.lang.String getProp3() {
return null;
}
/** /**
* set. * set.
*/ */
public final void setProp3(@org.jetbrains.annotations.NotNull() public final void setProp3(@org.jetbrains.annotations.NotNull()
java.lang.String v) { java.lang.String v) {
} }
public Test() {
super();
}
} }
//////////////////// ////////////////////
@@ -132,15 +132,15 @@ public final class Test2 {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String a = null; private final java.lang.String a = null;
public Test2(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
} }
public Test2(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
super();
}
} }
//////////////////// ////////////////////
@@ -156,15 +156,15 @@ public final class Test3 {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String a = null; private final java.lang.String a = null;
protected Test3(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
} }
protected Test3(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
super();
}
} }
//////////////////// ////////////////////
@@ -175,11 +175,11 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test4 { public final class Test4 {
public Test4() { public final void method() {
super();
} }
public final void method() { public Test4() {
super();
} }
} }
+23 -23
View File
@@ -2,11 +2,28 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class User { public final class User {
private final int age = 0;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String firstName = null; private final java.lang.String firstName = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String secondName = null; private final java.lang.String secondName = null;
private final int age = 0;
public final void procedure() {
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFirstName() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getSecondName() {
return null;
}
public final int getAge() {
return 0;
}
public User(@org.jetbrains.annotations.NotNull() public User(@org.jetbrains.annotations.NotNull()
java.lang.String firstName, @org.jetbrains.annotations.NotNull() java.lang.String firstName, @org.jetbrains.annotations.NotNull()
@@ -35,23 +52,9 @@ public final class User {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
@java.lang.Override() @java.lang.Override()
public boolean equals(@org.jetbrains.annotations.Nullable() public java.lang.String toString() {
java.lang.Object p0) {
return false;
}
public final int getAge() {
return 0;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFirstName() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getSecondName() {
return null; return null;
} }
@@ -60,12 +63,9 @@ public final class User {
return 0; return 0;
} }
public final void procedure() {
}
@org.jetbrains.annotations.NotNull()
@java.lang.Override() @java.lang.Override()
public java.lang.String toString() { public boolean equals(@org.jetbrains.annotations.Nullable()
return null; java.lang.Object p0) {
return false;
} }
} }
@@ -26,13 +26,13 @@ public abstract interface Intf {
private static final int BLACK = 1; private static final int BLACK = 1;
public static final int WHITE = 2; public static final int WHITE = 2;
private Companion() {
super();
}
public final int getBLACK() { public final int getBLACK() {
return 0; return 0;
} }
private Companion() {
super();
}
} }
} }
@@ -16,36 +16,116 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Foo { public final class Foo {
private final boolean z = false;
private final byte b = 0; private final byte b = 0;
private final char c = '\u0000'; private final char c = '\u0000';
private final char c2 = '\u0000'; private final char c2 = '\u0000';
private final short sh = 0;
private final int i = 0;
private final long l = 0L;
private final float f = 0.0F;
private final double d = 0.0;
@org.jetbrains.annotations.NotNull()
private final java.lang.String s = null;
@org.jetbrains.annotations.NotNull()
private final int[] iarr = null;
@org.jetbrains.annotations.NotNull()
private final long[] larr = null;
@org.jetbrains.annotations.NotNull()
private final double[] darr = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] sarr = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.Class<?> cl = null; private final java.lang.Class<?> cl = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.Class<?>[] clarr = null; private final java.lang.Class<?>[] clarr = null;
private final double d = 0.0;
@org.jetbrains.annotations.NotNull()
private final double[] darr = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final Em em = null; private final Em em = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final Em[] emarr = null; private final Em[] emarr = null;
private final float f = 0.0F;
private final int i = 0;
@org.jetbrains.annotations.NotNull()
private final int[] iarr = null;
private final long l = 0L;
@org.jetbrains.annotations.NotNull()
private final long[] larr = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String s = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] sarr = null;
private final short sh = 0;
private final boolean z = false;
public Foo() { public final void foo(int a) {
super(); }
public final boolean getZ() {
return false;
}
public final byte getB() {
return 0;
}
public final char getC() {
return '\u0000';
}
public final char getC2() {
return '\u0000';
}
public final short getSh() {
return 0;
}
public final int getI() {
return 0;
}
public final long getL() {
return 0L;
}
public final float getF() {
return 0.0F;
}
public final double getD() {
return 0.0;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getS() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final int[] getIarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final long[] getLarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final double[] getDarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getSarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?> getCl() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?>[] getClarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em getEm() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em[] getEmarr() {
return null;
} }
public Foo(boolean z, byte b, char c, char c2, short sh, int i, long l, float f, double d, @org.jetbrains.annotations.NotNull() public Foo(boolean z, byte b, char c, char c2, short sh, int i, long l, float f, double d, @org.jetbrains.annotations.NotNull()
@@ -61,87 +141,7 @@ public final class Foo {
super(); super();
} }
public final void foo(int a) { public Foo() {
} super();
public final byte getB() {
return 0;
}
public final char getC() {
return '\u0000';
}
public final char getC2() {
return '\u0000';
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?> getCl() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?>[] getClarr() {
return null;
}
public final double getD() {
return 0.0;
}
@org.jetbrains.annotations.NotNull()
public final double[] getDarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em getEm() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em[] getEmarr() {
return null;
}
public final float getF() {
return 0.0F;
}
public final int getI() {
return 0;
}
@org.jetbrains.annotations.NotNull()
public final int[] getIarr() {
return null;
}
public final long getL() {
return 0L;
}
@org.jetbrains.annotations.NotNull()
public final long[] getLarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getS() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getSarr() {
return null;
}
public final short getSh() {
return 0;
}
public final boolean getZ() {
return false;
} }
} }
@@ -16,36 +16,116 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Foo { public final class Foo {
private final boolean z = true;
private final byte b = (byte)0; private final byte b = (byte)0;
private final char c = 'c'; private final char c = 'c';
private final char c2 = '\n'; private final char c2 = '\n';
private final short sh = (short)10;
private final int i = 10;
private final long l = -10L;
private final float f = 1.0F;
private final double d = -1.0;
@org.jetbrains.annotations.NotNull()
private final java.lang.String s = "foo";
@org.jetbrains.annotations.NotNull()
private final int[] iarr = {1, 2, 3};
@org.jetbrains.annotations.NotNull()
private final long[] larr = {-1L, 0L, 1L};
@org.jetbrains.annotations.NotNull()
private final double[] darr = {7.3};
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] sarr = {"a", "bc"};
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.Class<?> cl = null; private final java.lang.Class<?> cl = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.Class<?>[] clarr = null; private final java.lang.Class<?>[] clarr = null;
private final double d = -1.0;
@org.jetbrains.annotations.NotNull()
private final double[] darr = {7.3};
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final Em em = Em.BAR; private final Em em = Em.BAR;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final Em[] emarr = {Em.FOO, Em.BAR}; private final Em[] emarr = {Em.FOO, Em.BAR};
private final float f = 1.0F;
private final int i = 10;
@org.jetbrains.annotations.NotNull()
private final int[] iarr = {1, 2, 3};
private final long l = -10L;
@org.jetbrains.annotations.NotNull()
private final long[] larr = {-1L, 0L, 1L};
@org.jetbrains.annotations.NotNull()
private final java.lang.String s = "foo";
@org.jetbrains.annotations.NotNull()
private final java.lang.String[] sarr = {"a", "bc"};
private final short sh = (short)10;
private final boolean z = true;
public Foo() { public final void foo(int a) {
super(); }
public final boolean getZ() {
return false;
}
public final byte getB() {
return 0;
}
public final char getC() {
return '\u0000';
}
public final char getC2() {
return '\u0000';
}
public final short getSh() {
return 0;
}
public final int getI() {
return 0;
}
public final long getL() {
return 0L;
}
public final float getF() {
return 0.0F;
}
public final double getD() {
return 0.0;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getS() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final int[] getIarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final long[] getLarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final double[] getDarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getSarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?> getCl() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?>[] getClarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em getEm() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em[] getEmarr() {
return null;
} }
public Foo(boolean z, byte b, char c, char c2, short sh, int i, long l, float f, double d, @org.jetbrains.annotations.NotNull() public Foo(boolean z, byte b, char c, char c2, short sh, int i, long l, float f, double d, @org.jetbrains.annotations.NotNull()
@@ -61,87 +141,7 @@ public final class Foo {
super(); super();
} }
public final void foo(int a) { public Foo() {
} super();
public final byte getB() {
return 0;
}
public final char getC() {
return '\u0000';
}
public final char getC2() {
return '\u0000';
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?> getCl() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<?>[] getClarr() {
return null;
}
public final double getD() {
return 0.0;
}
@org.jetbrains.annotations.NotNull()
public final double[] getDarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em getEm() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Em[] getEmarr() {
return null;
}
public final float getF() {
return 0.0F;
}
public final int getI() {
return 0;
}
@org.jetbrains.annotations.NotNull()
public final int[] getIarr() {
return null;
}
public final long getL() {
return 0L;
}
@org.jetbrains.annotations.NotNull()
public final long[] getLarr() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getS() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String[] getSarr() {
return null;
}
public final short getSh() {
return 0;
}
public final boolean getZ() {
return false;
} }
} }
@@ -21,17 +21,12 @@ public final class Foo {
@java.lang.Deprecated() @java.lang.Deprecated()
private final int prop = 0; private final int prop = 0;
public Foo() {
super();
}
@java.lang.Deprecated() @java.lang.Deprecated()
public final void foo(int a) { public final void foo(int a) {
} }
@java.lang.Deprecated() @java.lang.Deprecated()
public final int getFoo() { public static void getProp$annotations() {
return 0;
} }
@java.lang.Deprecated() @java.lang.Deprecated()
@@ -40,10 +35,15 @@ public final class Foo {
} }
@java.lang.Deprecated() @java.lang.Deprecated()
public static void getProp$annotations() { public final int getFoo() {
return 0;
} }
@java.lang.Deprecated() @java.lang.Deprecated()
public final void setFoo(int value) { public final void setFoo(int value) {
} }
public Foo() {
super();
}
} }
@@ -2,9 +2,9 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test { public final class Test {
private final Test.Companion.Example foo;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final Test.Companion Companion = null; public static final Test.Companion Companion = null;
private final Test.Companion.Example foo;
public Test() { public Test() {
super(); super();
@@ -34,9 +34,9 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test2 { public final class Test2 {
private final Test2.Amigo.Example foo;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final Test2.Amigo Amigo = null; public static final Test2.Amigo Amigo = null;
private final Test2.Amigo.Example foo;
public Test2() { public Test2() {
super(); super();
@@ -98,9 +98,9 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test4 { public final class Test4 {
private final int foo = 1;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final Test4.Companion Companion = null; public static final Test4.Companion Companion = null;
private final int foo = 1;
public Test4() { public Test4() {
super(); super();
@@ -115,9 +115,9 @@ public final class Test4 {
@kotlin.Metadata() @kotlin.Metadata()
public static final class Foo { public static final class Foo {
public static final int constProperty = 1;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final Test4.Companion.Foo INSTANCE = null; public static final Test4.Companion.Foo INSTANCE = null;
public static final int constProperty = 1;
private Foo() { private Foo() {
super(); super();
+9 -9
View File
@@ -34,16 +34,17 @@ public enum Enum2 {
private final java.lang.String col = null; private final java.lang.String col = null;
private final int col2 = 0; private final int col2 = 0;
Enum2(@Anno1(value = "first")
java.lang.String col, @Anno1(value = "second")
int col2) {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String color() { public final java.lang.String color() {
return null; return null;
} }
private final void privateEnumFun() {
}
public final void publicEnumFun() {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getCol() { public final java.lang.String getCol() {
return null; return null;
@@ -53,10 +54,9 @@ public enum Enum2 {
return 0; return 0;
} }
private final void privateEnumFun() { Enum2(@Anno1(value = "first")
} java.lang.String col, @Anno1(value = "second")
int col2) {
public final void publicEnumFun() {
} }
} }
@@ -35,13 +35,6 @@ public final class ErrorInConstructorParameter {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.util.List<ABC> c = null; private final java.util.List<ABC> c = null;
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
java.lang.String a, @org.jetbrains.annotations.NotNull()
ABC b, @org.jetbrains.annotations.NotNull()
java.util.List<? extends ABC> c) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
@@ -56,6 +49,13 @@ public final class ErrorInConstructorParameter {
public final java.util.List<ABC> getC() { public final java.util.List<ABC> getC() {
return null; return null;
} }
public ErrorInConstructorParameter(@org.jetbrains.annotations.NotNull()
java.lang.String a, @org.jetbrains.annotations.NotNull()
ABC b, @org.jetbrains.annotations.NotNull()
java.util.List<? extends ABC> c) {
super();
}
} }
//////////////////// ////////////////////
@@ -69,8 +69,39 @@ public final class ErrorInDeclarations {
public ABC p2; public ABC p2;
public BCD<java.lang.String> p3; public BCD<java.lang.String> p3;
public ErrorInDeclarations() { @org.jetbrains.annotations.NotNull()
super(); public final java.lang.String getP1() {
return null;
}
public final void setP1(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC getP2() {
return null;
}
public final void setP2(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
@org.jetbrains.annotations.NotNull()
public final BCD<java.lang.String> getP3() {
return null;
}
public final void setP3(@org.jetbrains.annotations.NotNull()
BCD<java.lang.String> p0) {
}
public final void overloads(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
}
public final void overloads(@org.jetbrains.annotations.NotNull()
ABC a) {
} }
public final void f1(@org.jetbrains.annotations.NotNull() public final void f1(@org.jetbrains.annotations.NotNull()
@@ -89,39 +120,8 @@ public final class ErrorInDeclarations {
return null; return null;
} }
@org.jetbrains.annotations.NotNull() public ErrorInDeclarations() {
public final java.lang.String getP1() { super();
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC getP2() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final BCD<java.lang.String> getP3() {
return null;
}
public final void overloads(@org.jetbrains.annotations.NotNull()
ABC a) {
}
public final void overloads(@org.jetbrains.annotations.NotNull()
java.lang.String a) {
}
public final void setP1(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
public final void setP2(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
public final void setP3(@org.jetbrains.annotations.NotNull()
BCD<java.lang.String> p0) {
} }
} }
@@ -22,17 +22,17 @@ public final class ClassWithParent implements java.lang.CharSequence {
super(); super();
} }
@java.lang.Override()
public final int length() {
return 0;
}
public abstract int getLength();
@java.lang.Override() @java.lang.Override()
public final char charAt(int p0) { public final char charAt(int p0) {
return '\u0000'; return '\u0000';
} }
public abstract char get(int p0); public abstract char get(int p0);
public abstract int getLength();
@java.lang.Override()
public final int length() {
return 0;
}
} }
@@ -9,19 +9,14 @@ public final class Child extends kotlin.collections.AbstractList<java.lang.Strin
super(); super();
} }
@java.lang.Override()
public final boolean contains(java.lang.Object p0) {
return false;
}
@java.lang.Override() @java.lang.Override()
public boolean contains(java.lang.String p0) { public boolean contains(java.lang.String p0) {
return false; return false;
} }
@java.lang.Override() @java.lang.Override()
public final int indexOf(java.lang.Object p0) { public final boolean contains(java.lang.Object p0) {
return 0; return false;
} }
@java.lang.Override() @java.lang.Override()
@@ -30,7 +25,7 @@ public final class Child extends kotlin.collections.AbstractList<java.lang.Strin
} }
@java.lang.Override() @java.lang.Override()
public final int lastIndexOf(java.lang.Object p0) { public final int indexOf(java.lang.Object p0) {
return 0; return 0;
} }
@@ -38,6 +33,11 @@ public final class Child extends kotlin.collections.AbstractList<java.lang.Strin
public int lastIndexOf(java.lang.String p0) { public int lastIndexOf(java.lang.String p0) {
return 0; return 0;
} }
@java.lang.Override()
public final int lastIndexOf(java.lang.Object p0) {
return 0;
}
} }
//////////////////// ////////////////////
@@ -115,10 +115,6 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class MappedList<R extends java.lang.Object> extends kotlin.collections.AbstractList<R> implements java.util.List<R> { public final class MappedList<R extends java.lang.Object> extends kotlin.collections.AbstractList<R> implements java.util.List<R> {
public MappedList() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@java.lang.Override() @java.lang.Override()
public java.lang.Void get(int index) { public java.lang.Void get(int index) {
@@ -129,6 +125,10 @@ public final class MappedList<R extends java.lang.Object> extends kotlin.collect
public int getSize() { public int getSize() {
return 0; return 0;
} }
public MappedList() {
super();
}
} }
//////////////////// ////////////////////
@@ -180,15 +180,15 @@ public final class TFooBar extends Foo implements test.Intf, Bar {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final X a = null; private final X a = null;
public TFooBar(@org.jetbrains.annotations.NotNull()
X a) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final X getA() { public final X getA() {
return null; return null;
} }
public TFooBar(@org.jetbrains.annotations.NotNull()
X a) {
super();
}
} }
//////////////////// ////////////////////
@@ -202,15 +202,15 @@ public final class TFooBar2 implements Foo, Bar {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final X a = null; private final X a = null;
public TFooBar2(@org.jetbrains.annotations.NotNull()
X a) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final X getA() { public final X getA() {
return null; return null;
} }
public TFooBar2(@org.jetbrains.annotations.NotNull()
X a) {
super();
}
} }
//////////////////// ////////////////////
@@ -3,10 +3,6 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class FunctionsTest { public final class FunctionsTest {
public FunctionsTest() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final kotlin.reflect.KProperty1<java.lang.String, java.lang.Integer> f() { public final kotlin.reflect.KProperty1<java.lang.String, java.lang.Integer> f() {
return null; return null;
@@ -23,4 +19,8 @@ public final class FunctionsTest {
public final int f4() { public final int f4() {
return 0; return 0;
} }
public FunctionsTest() {
super();
}
} }
@@ -2,28 +2,28 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class MappedList<T extends java.lang.Object, R extends java.lang.Object> extends kotlin.collections.AbstractList<R> implements java.util.List<R> { public final class MappedList<T extends java.lang.Object, R extends java.lang.Object> extends kotlin.collections.AbstractList<R> implements java.util.List<R> {
private final kotlin.jvm.functions.Function1<T, R> function = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.util.List<T> list = null; private final java.util.List<T> list = null;
private final kotlin.jvm.functions.Function1<T, R> function = null;
public MappedList(@org.jetbrains.annotations.NotNull()
java.util.List<? extends T> list, @org.jetbrains.annotations.NotNull()
kotlin.jvm.functions.Function1<? super T, ? extends R> function) {
super();
}
@java.lang.Override() @java.lang.Override()
public R get(int index) { public R get(int index) {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final java.util.List<T> getList() {
return null;
}
@java.lang.Override() @java.lang.Override()
public int getSize() { public int getSize() {
return 0; return 0;
} }
@org.jetbrains.annotations.NotNull()
public final java.util.List<T> getList() {
return null;
}
public MappedList(@org.jetbrains.annotations.NotNull()
java.util.List<? extends T> list, @org.jetbrains.annotations.NotNull()
kotlin.jvm.functions.Function1<? super T, ? extends R> function) {
super();
}
} }
@@ -3,10 +3,6 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class GenericRawSignatures { public final class GenericRawSignatures {
public GenericRawSignatures() {
super();
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final <T extends java.lang.Object>T genericFun() { public final <T extends java.lang.Object>T genericFun() {
return null; return null;
@@ -16,4 +12,8 @@ public final class GenericRawSignatures {
public final java.lang.String nonGenericFun() { public final java.lang.String nonGenericFun() {
return null; return null;
} }
public GenericRawSignatures() {
super();
}
} }
@@ -54,14 +54,14 @@ public final class MyClass<M1 extends java.lang.Object, M2 extends java.lang.Obj
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private final java.util.List<java.util.Map<java.lang.String, M1>> fld = null; private final java.util.List<java.util.Map<java.lang.String, M1>> fld = null;
public MyClass() {
super();
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final java.util.List<java.util.Map<java.lang.String, M1>> getFld() { public final java.util.List<java.util.Map<java.lang.String, M1>> getFld() {
return null; return null;
} }
public MyClass() {
super();
}
} }
//////////////////// ////////////////////
@@ -7,8 +7,7 @@ public final class Test {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String nonIgnoredProperty = ""; private final java.lang.String nonIgnoredProperty = "";
public Test() { public final void nonIgnoredFun() {
super();
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -16,6 +15,7 @@ public final class Test {
return null; return null;
} }
public final void nonIgnoredFun() { public Test() {
super();
} }
} }
@@ -22,11 +22,6 @@ public final class Cl {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private java.lang.String name; private java.lang.String name;
public Cl(@org.jetbrains.annotations.NotNull()
java.lang.String name) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getName() { public final java.lang.String getName() {
return null; return null;
@@ -35,6 +30,11 @@ public final class Cl {
public final void setName(@org.jetbrains.annotations.NotNull() public final void setName(@org.jetbrains.annotations.NotNull()
java.lang.String p0) { java.lang.String p0) {
} }
public Cl(@org.jetbrains.annotations.NotNull()
java.lang.String name) {
super();
}
} }
//////////////////// ////////////////////
@@ -3,13 +3,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract class BaseClass { public abstract class BaseClass {
@org.jetbrains.annotations.NotNull()
public abstract Result doJob();
public BaseClass(@org.jetbrains.annotations.NotNull() public BaseClass(@org.jetbrains.annotations.NotNull()
Context context, int num, boolean bool) { Context context, int num, boolean bool) {
super(); super();
} }
@org.jetbrains.annotations.NotNull()
public abstract Result doJob();
} }
//////////////////// ////////////////////
@@ -29,16 +29,16 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Inheritor extends BaseClass { public final class Inheritor extends BaseClass {
public Inheritor(@org.jetbrains.annotations.NotNull()
Context context) {
super(null, 0, false);
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@java.lang.Override() @java.lang.Override()
public Result doJob() { public Result doJob() {
return null; return null;
} }
public Inheritor(@org.jetbrains.annotations.NotNull()
Context context) {
super(null, 0, false);
}
} }
//////////////////// ////////////////////
@@ -9,23 +9,23 @@ public final class Cl {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String a = null; private final java.lang.String a = null;
@java.lang.Override()
public boolean equals(java.lang.Object p0) {
return false;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
} }
@java.lang.Override()
public java.lang.String toString() {
return null;
}
@java.lang.Override() @java.lang.Override()
public int hashCode() { public int hashCode() {
return 0; return 0;
} }
@java.lang.Override() @java.lang.Override()
public java.lang.String toString() { public boolean equals(java.lang.Object p0) {
return null; return false;
} }
} }
@@ -17,11 +17,6 @@ public final class Product2 implements Named {
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private java.lang.String name; private java.lang.String name;
public Product2(@org.jetbrains.annotations.NotNull()
java.lang.String otherName) {
super();
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@java.lang.Override() @java.lang.Override()
public java.lang.String getName() { public java.lang.String getName() {
@@ -31,4 +26,9 @@ public final class Product2 implements Named {
public void setName(@org.jetbrains.annotations.Nullable() public void setName(@org.jetbrains.annotations.Nullable()
java.lang.String p0) { java.lang.String p0) {
} }
public Product2(@org.jetbrains.annotations.NotNull()
java.lang.String otherName) {
super();
}
} }
@@ -57,10 +57,6 @@ public final class B {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String d = ""; private final java.lang.String d = "";
public B() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getA() { public final java.lang.String getA() {
return null; return null;
@@ -80,4 +76,8 @@ public final class B {
public final java.lang.String getD() { public final java.lang.String getD() {
return null; return null;
} }
public B() {
super();
}
} }
@@ -3,11 +3,11 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract interface Foo { public abstract interface Foo {
public abstract void bar();
public default void foo() { public default void foo() {
} }
public default void foo2(int a) { public default void foo2(int a) {
} }
public abstract void bar();
} }
@@ -3,14 +3,14 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract interface Foo { public abstract interface Foo {
public abstract void bar();
public default void foo() { public default void foo() {
} }
public default void foo2(int a) { public default void foo2(int a) {
} }
public abstract void bar();
@kotlin.Metadata() @kotlin.Metadata()
public static final class DefaultImpls { public static final class DefaultImpls {
@@ -3,13 +3,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract interface Foo { public abstract interface Foo {
public abstract void bar();
public abstract void foo(); public abstract void foo();
public default void foo2(int a) { public default void foo2(int a) {
} }
public abstract void bar();
@kotlin.Metadata() @kotlin.Metadata()
public static final class DefaultImpls { public static final class DefaultImpls {
@@ -3,13 +3,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract interface Foo { public abstract interface Foo {
public abstract void bar();
public abstract void foo(); public abstract void foo();
public default void foo2(int a) { public default void foo2(int a) {
} }
public abstract void bar();
@kotlin.Metadata() @kotlin.Metadata()
public static final class DefaultImpls { public static final class DefaultImpls {
@@ -7,15 +7,6 @@ public final class State {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String someString = null; private final java.lang.String someString = null;
public State(int someInt, long someLong) {
super();
}
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) {
super();
}
public final int getSomeInt() { public final int getSomeInt() {
return 0; return 0;
} }
@@ -28,6 +19,15 @@ public final class State {
public final java.lang.String getSomeString() { public final java.lang.String getSomeString() {
return null; return null;
} }
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) {
super();
}
public State(int someInt, long someLong) {
super();
}
} }
//////////////////// ////////////////////
@@ -42,27 +42,8 @@ public final class State2 {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String someString = null; public final java.lang.String someString = null;
public State2(int someInt) { public final int test(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
super();
}
public State2(int someInt, long someLong) {
super();
}
public State2(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) { java.lang.String someString) {
super();
}
public final void methodWithoutArgs() {
}
public final void someMethod(@org.jetbrains.annotations.NotNull()
java.lang.String str) {
}
public final int test(int someInt) {
return 0; return 0;
} }
@@ -70,8 +51,27 @@ public final class State2 {
return 0; return 0;
} }
public final int test(int someInt, long someLong, @org.jetbrains.annotations.NotNull() public final int test(int someInt) {
java.lang.String someString) {
return 0; return 0;
} }
public final void someMethod(@org.jetbrains.annotations.NotNull()
java.lang.String str) {
}
public final void methodWithoutArgs() {
}
public State2(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) {
super();
}
public State2(int someInt, long someLong) {
super();
}
public State2(int someInt) {
super();
}
} }
+12 -12
View File
@@ -14,15 +14,15 @@ public abstract interface FooComponent {
@kotlin.Metadata() @kotlin.Metadata()
public static final class Companion { public static final class Companion {
private Companion() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String create(@org.jetbrains.annotations.NotNull() public final java.lang.String create(@org.jetbrains.annotations.NotNull()
java.lang.String context) { java.lang.String context) {
return null; return null;
} }
private Companion() {
super();
}
} }
} }
@@ -33,13 +33,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class JvmStaticTest { public final class JvmStaticTest {
@org.jetbrains.annotations.NotNull() public final byte three = (byte)3;
public static final JvmStaticTest.Companion Companion = null;
public static final char c = 'C';
public final char d = 'D'; public final char d = 'D';
private static final int one = 1; private static final int one = 1;
public final byte three = (byte)3;
public static final int two = 2; public static final int two = 2;
public static final char c = 'C';
@org.jetbrains.annotations.NotNull()
public static final JvmStaticTest.Companion Companion = null;
public JvmStaticTest() { public JvmStaticTest() {
super(); super();
@@ -52,16 +52,16 @@ public final class JvmStaticTest {
@kotlin.Metadata() @kotlin.Metadata()
public static final class Companion { public static final class Companion {
private Companion() { @java.lang.Deprecated()
super(); public static void getOne$annotations() {
} }
public final int getOne() { public final int getOne() {
return 0; return 0;
} }
@java.lang.Deprecated() private Companion() {
public static void getOne$annotations() { super();
} }
} }
} }
@@ -2,10 +2,10 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test { public final class Test {
@org.jetbrains.annotations.NotNull()
public static final Test.A A = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String test = ""; private static final java.lang.String test = "";
@org.jetbrains.annotations.NotNull()
public static final Test.A A = null;
public Test() { public Test() {
super(); super();
@@ -19,8 +19,8 @@ public final class Test {
@kotlin.Metadata() @kotlin.Metadata()
public static final class A { public static final class A {
private A() { @java.lang.Deprecated()
super(); public static void getTest$annotations() {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -28,8 +28,8 @@ public final class Test {
return null; return null;
} }
@java.lang.Deprecated() private A() {
public static void getTest$annotations() { super();
} }
} }
} }
@@ -7,15 +7,15 @@ public final class Kt14996Kt {
super(); super();
} }
@org.jetbrains.annotations.NotNull()
public static final java.lang.CharSequence crashMe(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.lang.CharSequence> values) {
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final java.lang.String crashMe(@org.jetbrains.annotations.NotNull() public static final java.lang.String crashMe(@org.jetbrains.annotations.NotNull()
java.util.List<java.lang.String> values) { java.util.List<java.lang.String> values) {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public static final java.lang.CharSequence crashMe(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.lang.CharSequence> values) {
return null;
}
} }
+28 -28
View File
@@ -3,59 +3,59 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Outer { public final class Outer {
public Outer() {
super();
}
public final void nonAbstract(@org.jetbrains.annotations.NotNull() public final void nonAbstract(@org.jetbrains.annotations.NotNull()
java.lang.String s, int i) { java.lang.String s, int i) {
} }
public Outer() {
super();
}
@kotlin.Metadata() @kotlin.Metadata()
final class Inner { final class Inner {
@org.jetbrains.annotations.NotNull()
private final java.lang.String bar = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String foo = null; private final java.lang.String foo = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String bar = null;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFoo() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getBar() {
return null;
}
public Inner(@org.jetbrains.annotations.NotNull() public Inner(@org.jetbrains.annotations.NotNull()
java.lang.String foo, @org.jetbrains.annotations.NotNull() java.lang.String foo, @org.jetbrains.annotations.NotNull()
java.lang.String bar) { java.lang.String bar) {
super(); super();
} }
@org.jetbrains.annotations.NotNull()
public final java.lang.String getBar() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFoo() {
return null;
}
} }
@kotlin.Metadata() @kotlin.Metadata()
static final class Nested { static final class Nested {
@org.jetbrains.annotations.NotNull()
private final java.lang.String bar = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String foo = null; private final java.lang.String foo = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String bar = null;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFoo() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getBar() {
return null;
}
public Nested(@org.jetbrains.annotations.NotNull() public Nested(@org.jetbrains.annotations.NotNull()
java.lang.String foo, @org.jetbrains.annotations.NotNull() java.lang.String foo, @org.jetbrains.annotations.NotNull()
java.lang.String bar) { java.lang.String bar) {
super(); super();
} }
@org.jetbrains.annotations.NotNull()
public final java.lang.String getBar() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFoo() {
return null;
}
} }
} }
@@ -7,13 +7,13 @@ public final class MutableEntry<K extends java.lang.Object, V extends java.lang.
private final java.util.Map<K, V> internal = null; private final java.util.Map<K, V> internal = null;
private final K key = null; private final K key = null;
public MutableEntry(@org.jetbrains.annotations.NotNull()
java.util.Map<K, V> internal, K key, V value) {
super();
}
@java.lang.Override() @java.lang.Override()
public K getKey() { public K getKey() {
return null; return null;
} }
public MutableEntry(@org.jetbrains.annotations.NotNull()
java.util.Map<K, V> internal, K key, V value) {
super();
}
} }
+66 -66
View File
@@ -89,13 +89,14 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class JJ { public final class JJ {
@org.jetbrains.annotations.NotNull()
public static final app.JJ INSTANCE = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String b = null; private static final java.lang.String b = null;
@org.jetbrains.annotations.NotNull()
public static final app.JJ INSTANCE = null;
private JJ() { @org.jetbrains.annotations.NotNull()
super(); public final java.lang.String getB() {
return null;
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -103,9 +104,8 @@ public final class JJ {
return null; return null;
} }
@org.jetbrains.annotations.NotNull() private JJ() {
public final java.lang.String getB() { super();
return null;
} }
} }
@@ -136,8 +136,59 @@ public final class MyActivity {
public int propE = app.B.id.textView; public int propE = app.B.id.textView;
private final int propF = 0; private final int propF = 0;
public MyActivity() { @Bind(id = lib.R.id.textView)
super(); @java.lang.Deprecated()
public static void getA$annotations() {
}
public final int getA() {
return 0;
}
@Bind(id = lib.R.id.textView)
@java.lang.Deprecated()
public static void getB$annotations() {
}
public final int getB() {
return 0;
}
@Bind(id = app.R.layout.mainActivity)
@java.lang.Deprecated()
public static void getC$annotations() {
}
public final int getC() {
return 0;
}
@Bind(id = app.R.layout.mainActivity)
@java.lang.Deprecated()
public static void getD$annotations() {
}
public final int getD() {
return 0;
}
@Anno(a1 = app.B.a1, a2 = app.B.a2, a3 = app.B.a3, a4 = app.B.a4, a5 = app.B.a5, a6 = app.B.a6, a7 = app.B.a7, a8 = app.B.a8, a9 = "A")
@Bind(id = app.R2.layout.mainActivity)
@java.lang.Deprecated()
public static void getE$annotations() {
}
public final int getE() {
return 0;
}
@Bind(id = app.B.id.textView)
@java.lang.Deprecated()
public static void getF$annotations() {
}
public final int getF() {
return 0;
} }
@Bind(id = lib.R.id.textView) @Bind(id = lib.R.id.textView)
@@ -161,59 +212,8 @@ public final class MyActivity {
public final void foo5() { public final void foo5() {
} }
public final int getA() {
return 0;
}
@Bind(id = lib.R.id.textView)
@java.lang.Deprecated()
public static void getA$annotations() {
}
public final int getB() {
return 0;
}
@Bind(id = lib.R.id.textView)
@java.lang.Deprecated()
public static void getB$annotations() {
}
public final int getC() {
return 0;
}
@Bind(id = app.R.layout.mainActivity)
@java.lang.Deprecated()
public static void getC$annotations() {
}
public final int getD() {
return 0;
}
@Bind(id = app.R.layout.mainActivity)
@java.lang.Deprecated()
public static void getD$annotations() {
}
public final int getE() {
return 0;
}
@Anno(a1 = app.B.a1, a2 = app.B.a2, a3 = app.B.a3, a4 = app.B.a4, a5 = app.B.a5, a6 = app.B.a6, a7 = app.B.a7, a8 = app.B.a8, a9 = "A")
@Bind(id = app.R2.layout.mainActivity)
@java.lang.Deprecated()
public static void getE$annotations() {
}
public final int getF() {
return 0;
}
@Bind(id = app.B.id.textView) @Bind(id = app.B.id.textView)
@java.lang.Deprecated() public final void plainIntConstant() {
public static void getF$annotations() {
} }
public final int getPropB() { public final int getPropB() {
@@ -224,15 +224,15 @@ public final class MyActivity {
return 0; return 0;
} }
public final void setPropC(int p0) {
}
public final int getPropF() { public final int getPropF() {
return 0; return 0;
} }
@Bind(id = app.B.id.textView) public MyActivity() {
public final void plainIntConstant() { super();
}
public final void setPropC(int p0) {
} }
} }
+10 -10
View File
@@ -6,16 +6,16 @@ public final class Foo {
private final Foo.Bar bar = null; private final Foo.Bar bar = null;
private final java.lang.String string = null; private final java.lang.String string = null;
public Foo(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final Foo.Bar getBar() { public final Foo.Bar getBar() {
return null; return null;
} }
public Foo(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@kotlin.Metadata() @kotlin.Metadata()
public static final class Bar { public static final class Bar {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -23,11 +23,6 @@ public final class Foo {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String string = null; private final java.lang.String string = null;
public Bar(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.util.ArrayList<Foo.Bar.Bar> getBars() { public final java.util.ArrayList<Foo.Bar.Bar> getBars() {
return null; return null;
@@ -37,5 +32,10 @@ public final class Foo {
public final java.lang.String getString() { public final java.lang.String getString() {
return null; return null;
} }
public Bar(@org.jetbrains.annotations.NotNull()
java.lang.String string) {
super();
}
} }
} }
@@ -4,13 +4,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class StaticImport { public final class StaticImport {
private final java.util.Collection<java.lang.String> x = null;
private final kapt.StaticMethod<java.lang.String> l = null; private final kapt.StaticMethod<java.lang.String> l = null;
private final kapt.StaticMethod<java.lang.String> m = null; private final kapt.StaticMethod<java.lang.String> m = null;
private final java.util.Collection<java.lang.String> x = null;
private final int y = 0; private final int y = 0;
public StaticImport() { public final java.util.Collection<java.lang.String> getX() {
super(); return null;
} }
public final kapt.StaticMethod<java.lang.String> getL() { public final kapt.StaticMethod<java.lang.String> getL() {
@@ -21,13 +21,13 @@ public final class StaticImport {
return null; return null;
} }
public final java.util.Collection<java.lang.String> getX() {
return null;
}
public final int getY() { public final int getY() {
return 0; return 0;
} }
public StaticImport() {
super();
}
} }
//////////////////// ////////////////////
+23 -23
View File
@@ -5,9 +5,11 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract class BundleProperty<AA extends java.lang.Object> extends test.NullableBundleProperty<AA> { public abstract class BundleProperty<AA extends java.lang.Object> extends test.NullableBundleProperty<AA> {
public BundleProperty(@org.jetbrains.annotations.Nullable() @java.lang.Override()
java.lang.String key) { public final void setValue(@org.jetbrains.annotations.NotNull()
super(null); java.lang.Object thisRef, @org.jetbrains.annotations.NotNull()
kotlin.reflect.KProperty<?> property, @org.jetbrains.annotations.Nullable()
AA value) {
} }
@java.lang.Override() @java.lang.Override()
@@ -28,11 +30,9 @@ public abstract class BundleProperty<AA extends java.lang.Object> extends test.N
java.lang.Object bundle, @org.jetbrains.annotations.NotNull() java.lang.Object bundle, @org.jetbrains.annotations.NotNull()
java.lang.String key, AA value); java.lang.String key, AA value);
@java.lang.Override() public BundleProperty(@org.jetbrains.annotations.Nullable()
public final void setValue(@org.jetbrains.annotations.NotNull() java.lang.String key) {
java.lang.Object thisRef, @org.jetbrains.annotations.NotNull() super(null);
kotlin.reflect.KProperty<?> property, @org.jetbrains.annotations.Nullable()
AA value) {
} }
} }
@@ -67,16 +67,10 @@ import java.lang.System;
public abstract class NullableBundleProperty<EE extends java.lang.Object> implements kotlin.properties.ReadWriteProperty<java.lang.Object, EE> { public abstract class NullableBundleProperty<EE extends java.lang.Object> implements kotlin.properties.ReadWriteProperty<java.lang.Object, EE> {
private final java.lang.String key = null; private final java.lang.String key = null;
public NullableBundleProperty(@org.jetbrains.annotations.Nullable() private final java.lang.String toKey(kotlin.reflect.KProperty<?> $this$toKey) {
java.lang.String key) { return null;
super();
} }
@org.jetbrains.annotations.Nullable()
public abstract EE getValue(@org.jetbrains.annotations.NotNull()
java.lang.Object bundle, @org.jetbrains.annotations.NotNull()
java.lang.String key);
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@java.lang.Override() @java.lang.Override()
public EE getValue(@org.jetbrains.annotations.NotNull() public EE getValue(@org.jetbrains.annotations.NotNull()
@@ -85,11 +79,6 @@ public abstract class NullableBundleProperty<EE extends java.lang.Object> implem
return null; return null;
} }
public abstract void setNullableValue(@org.jetbrains.annotations.NotNull()
java.lang.Object bundle, @org.jetbrains.annotations.NotNull()
java.lang.String key, @org.jetbrains.annotations.Nullable()
EE value);
@java.lang.Override() @java.lang.Override()
public void setValue(@org.jetbrains.annotations.NotNull() public void setValue(@org.jetbrains.annotations.NotNull()
java.lang.Object thisRef, @org.jetbrains.annotations.NotNull() java.lang.Object thisRef, @org.jetbrains.annotations.NotNull()
@@ -97,7 +86,18 @@ public abstract class NullableBundleProperty<EE extends java.lang.Object> implem
EE value) { EE value) {
} }
private final java.lang.String toKey(kotlin.reflect.KProperty<?> $this$toKey) { @org.jetbrains.annotations.Nullable()
return null; public abstract EE getValue(@org.jetbrains.annotations.NotNull()
java.lang.Object bundle, @org.jetbrains.annotations.NotNull()
java.lang.String key);
public abstract void setNullableValue(@org.jetbrains.annotations.NotNull()
java.lang.Object bundle, @org.jetbrains.annotations.NotNull()
java.lang.String key, @org.jetbrains.annotations.Nullable()
EE value);
public NullableBundleProperty(@org.jetbrains.annotations.Nullable()
java.lang.String key) {
super();
} }
} }
@@ -3,11 +3,11 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class T implements java.lang.Runnable { public final class T implements java.lang.Runnable {
public T() {
super();
}
@java.lang.Override() @java.lang.Override()
public void run() { public void run() {
} }
public T() {
super();
}
} }
@@ -2,13 +2,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Foo { public final class Foo {
private final kotlin.Lazy foo$delegate = null;
private final kotlin.Lazy bar$delegate = null; private final kotlin.Lazy bar$delegate = null;
private final kotlin.Lazy baz$delegate = null; private final kotlin.Lazy baz$delegate = null;
private final kotlin.Lazy foo$delegate = null;
private final kotlin.Lazy generic1$delegate = null; private final kotlin.Lazy generic1$delegate = null;
public Foo() { private final java.lang.Runnable getFoo() {
super(); return null;
} }
private final java.lang.Object getBar() { private final java.lang.Object getBar() {
@@ -19,12 +19,12 @@ public final class Foo {
return null; return null;
} }
private final java.lang.Runnable getFoo() { private final GenericIntf<java.lang.CharSequence> getGeneric1() {
return null; return null;
} }
private final GenericIntf<java.lang.CharSequence> getGeneric1() { public Foo() {
return null; super();
} }
} }
@@ -3,12 +3,12 @@ import kotlin.reflect.KClass;
@kotlin.Metadata() @kotlin.Metadata()
public final class Test { public final class Test {
public Test() {
super();
}
public final void a(@org.jetbrains.annotations.NotNull() public final void a(@org.jetbrains.annotations.NotNull()
ABC a, @org.jetbrains.annotations.NotNull() ABC a, @org.jetbrains.annotations.NotNull()
BCD b) { BCD b) {
} }
public Test() {
super();
}
} }
@@ -3,17 +3,17 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract class Cls { public abstract class Cls {
public Cls() { public abstract void foo(@org.jetbrains.annotations.NotNull()
super(); java.lang.String abc);
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String bar(int bcd) { public final java.lang.String bar(int bcd) {
return null; return null;
} }
public abstract void foo(@org.jetbrains.annotations.NotNull() public Cls() {
java.lang.String abc); super();
}
} }
//////////////////// ////////////////////
@@ -24,12 +24,12 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public abstract interface Intf { public abstract interface Intf {
@org.jetbrains.annotations.NotNull()
public abstract java.lang.String bar(int bcd);
public abstract void foo(@org.jetbrains.annotations.NotNull() public abstract void foo(@org.jetbrains.annotations.NotNull()
java.lang.String abc); java.lang.String abc);
@org.jetbrains.annotations.NotNull()
public abstract java.lang.String bar(int bcd);
@kotlin.Metadata() @kotlin.Metadata()
public static final class DefaultImpls { public static final class DefaultImpls {
@@ -4,10 +4,6 @@ import java.lang.System;
public final class CrashMe { public final class CrashMe {
private final int resources = 1; private final int resources = 1;
public CrashMe() {
super();
}
public final int getResources() { public final int getResources() {
return 0; return 0;
} }
@@ -16,4 +12,8 @@ public final class CrashMe {
public final java.lang.String getResources() { public final java.lang.String getResources() {
return null; return null;
} }
public CrashMe() {
super();
}
} }
+12 -12
View File
@@ -33,10 +33,6 @@ public final class Modifiers {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private volatile java.lang.String volatileField = ""; private volatile java.lang.String volatileField = "";
public Modifiers() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getTransientField() { public final java.lang.String getTransientField() {
return null; return null;
@@ -47,8 +43,16 @@ public final class Modifiers {
return null; return null;
} }
public final void setVolatileField(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
public final strictfp void strictFp() {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String overloads() { public final java.lang.String overloads(@org.jetbrains.annotations.NotNull()
java.lang.String a, int n) {
return null; return null;
} }
@@ -59,16 +63,12 @@ public final class Modifiers {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String overloads(@org.jetbrains.annotations.NotNull() public final java.lang.String overloads() {
java.lang.String a, int n) {
return null; return null;
} }
public final void setVolatileField(@org.jetbrains.annotations.NotNull() public Modifiers() {
java.lang.String p0) { super();
}
public final strictfp void strictFp() {
} }
} }
@@ -5,8 +5,9 @@ public final class A {
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private final A x = null; private final A x = null;
public A() { @org.jetbrains.annotations.Nullable()
super(); public final A getX() {
return null;
} }
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@@ -16,9 +17,8 @@ public final class A {
return null; return null;
} }
@org.jetbrains.annotations.Nullable() public A() {
public final A getX() { super();
return null;
} }
@kotlin.Metadata() @kotlin.Metadata()
@@ -4,10 +4,10 @@ import java.lang.System;
public final class A$B { public final class A$B {
public A$B.C c; public A$B.C c;
public A$B.D$E de; public A$B.D$E de;
public A$B.D$$E dee;
public A$B.D$$$E deee;
public J$B.C jc; public J$B.C jc;
public J$B.D$E jde; public J$B.D$E jde;
public A$B.D$$E dee;
public A$B.D$$$E deee;
public J$B.D$$E jdee; public J$B.D$$E jdee;
public J$B.D$$$E jdeee; public J$B.D$$$E jdeee;
@@ -245,11 +245,6 @@ public final class Test1 extends Foo.Bar implements IFoo.IBar, IFoo.IBar.IZoo {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final Foo.Bar.Zoo zoo = null; private final Foo.Bar.Zoo zoo = null;
public Test1(@org.jetbrains.annotations.NotNull()
Foo.Bar.Zoo zoo) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.Thread.State a() { public final java.lang.Thread.State a() {
return null; return null;
@@ -264,4 +259,9 @@ public final class Test1 extends Foo.Bar implements IFoo.IBar, IFoo.IBar.IZoo {
public final Foo.Bar.Zoo getZoo() { public final Foo.Bar.Zoo getZoo() {
return null; return null;
} }
public Test1(@org.jetbrains.annotations.NotNull()
Foo.Bar.Zoo zoo) {
super();
}
} }
@@ -6,10 +6,10 @@ import java.lang.System;
public final class A$B { public final class A$B {
public test.A$B.C c; public test.A$B.C c;
public test.A$B.D$E de; public test.A$B.D$E de;
public test.A$B.D$$E dee;
public test.A$B.D$$$E deee;
public test.J$B.C jc; public test.J$B.C jc;
public test.J$B.D$E jde; public test.J$B.D$E jde;
public test.A$B.D$$E dee;
public test.A$B.D$$$E deee;
public test.J$B.D$$E jdee; public test.J$B.D$$E jdee;
public test.J$B.D$$$E jdeee; public test.J$B.D$$$E jdeee;
@@ -253,11 +253,6 @@ public final class Test1 extends test.Foo.Bar implements test.IFoo.IBar, test.IF
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final test.Foo.Bar.Zoo zoo = null; private final test.Foo.Bar.Zoo zoo = null;
public Test1(@org.jetbrains.annotations.NotNull()
test.Foo.Bar.Zoo zoo) {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.Thread.State a() { public final java.lang.Thread.State a() {
return null; return null;
@@ -272,4 +267,9 @@ public final class Test1 extends test.Foo.Bar implements test.IFoo.IBar, test.IF
public final test.Foo.Bar.Zoo getZoo() { public final test.Foo.Bar.Zoo getZoo() {
return null; return null;
} }
public Test1(@org.jetbrains.annotations.NotNull()
test.Foo.Bar.Zoo zoo) {
super();
}
} }
@@ -3,8 +3,6 @@ import java.lang.System;
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"}) @kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
@kotlin.Metadata() @kotlin.Metadata()
public final class NonExistentType { public final class NonExistentType {
@org.jetbrains.annotations.NotNull()
public static final NonExistentType INSTANCE = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private static final ABCDEF a = null; private static final ABCDEF a = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@@ -13,23 +11,8 @@ public final class NonExistentType {
private static final Function1<ABCDEF, kotlin.Unit> c = null; private static final Function1<ABCDEF, kotlin.Unit> c = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private static final ABCDEF<java.lang.String, Function1<java.util.List<ABCDEF>, kotlin.Unit>> d = null; private static final ABCDEF<java.lang.String, Function1<java.util.List<ABCDEF>, kotlin.Unit>> d = null;
private NonExistentType() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final ABCDEF a(@org.jetbrains.annotations.NotNull() public static final NonExistentType INSTANCE = null;
ABCDEF a, @org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABCDEF b(@org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final ABCDEF getA() { public final ABCDEF getA() {
@@ -50,6 +33,23 @@ public final class NonExistentType {
public final ABCDEF<java.lang.String, Function1<java.util.List<ABCDEF>, kotlin.Unit>> getD() { public final ABCDEF<java.lang.String, Function1<java.util.List<ABCDEF>, kotlin.Unit>> getD() {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final ABCDEF a(@org.jetbrains.annotations.NotNull()
ABCDEF a, @org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABCDEF b(@org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
private NonExistentType() {
super();
}
} }
//////////////////// ////////////////////
@@ -53,11 +53,6 @@ public final class Test<G extends java.lang.Object> {
private final ABC b = null; private final ABC b = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private final java.util.List<ABC> c = null; private final java.util.List<ABC> c = null;
public ABC coocoo;
public ABC<java.lang.String> coocoo2;
public ABC<ABC> coocoo21;
public ABC<java.lang.String, java.lang.String> coocoo3;
public ABC<java.lang.String, ABC<ABC>> coocoo31;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private final java.util.List<java.util.Map<BCD, ABC<java.util.List<BCD>>>> d = null; private final java.util.List<java.util.Map<BCD, ABC<java.util.List<BCD>>>> d = null;
public java.util.List<java.util.Map<? extends ABC, BCD>> e; public java.util.List<java.util.Map<? extends ABC, BCD>> e;
@@ -68,17 +63,205 @@ public final class Test<G extends java.lang.Object> {
public Function0<CDE> j; public Function0<CDE> j;
public Function2<ABC, java.util.List<BCD>, CDE> k; public Function2<ABC, java.util.List<BCD>, CDE> k;
public ABC.BCD.EFG l; public ABC.BCD.EFG l;
public ABC coocoo;
public ABC<java.lang.String> coocoo2;
public ABC<ABC> coocoo21;
public ABC<java.lang.String, java.lang.String> coocoo3;
public ABC<java.lang.String, ABC<ABC>> coocoo31;
public ABC nested;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.Object m = null; private final java.lang.Object m = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String n = ""; private final java.lang.String n = "";
public ABC nested;
public java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<ABC>>>>>>>>> o10;
public java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends error.NonExistentClass>>>>>>>>>> o11; public java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends error.NonExistentClass>>>>>>>>>> o11;
public java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<ABC>>>>>>>>> o10;
public java.util.Calendar.Builder p; public java.util.Calendar.Builder p;
public Test() { @org.jetbrains.annotations.NotNull()
super(); public final ABC getA() {
return null;
}
public final void setA(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
@org.jetbrains.annotations.Nullable()
public final ABC getB() {
return null;
}
@org.jetbrains.annotations.Nullable()
public final java.util.List<ABC> getC() {
return null;
}
@org.jetbrains.annotations.Nullable()
public final java.util.List<java.util.Map<BCD, ABC<java.util.List<BCD>>>> getD() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.Map<? extends ABC, BCD>> getE() {
return null;
}
public final void setE(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.Map<? extends ABC, ? extends BCD>> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<?> getF() {
return null;
}
public final void setF(@org.jetbrains.annotations.NotNull()
ABC<?> p0) {
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<?> getG() {
return null;
}
public final void setG(@org.jetbrains.annotations.NotNull()
java.util.List<?> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.Integer, java.lang.String> getH() {
return null;
}
public final void setH(@org.jetbrains.annotations.NotNull()
ABC<java.lang.Integer, java.lang.String> p0) {
}
@org.jetbrains.annotations.NotNull()
public final Function2<ABC, java.util.List<BCD>, CDE> getI() {
return null;
}
public final void setI(@org.jetbrains.annotations.NotNull()
Function2<ABC, java.util.List<? extends BCD>, CDE> p0) {
}
@org.jetbrains.annotations.NotNull()
public final Function0<CDE> getJ() {
return null;
}
public final void setJ(@org.jetbrains.annotations.NotNull()
Function0<CDE> p0) {
}
@org.jetbrains.annotations.NotNull()
public final Function2<ABC, java.util.List<BCD>, CDE> getK() {
return null;
}
public final void setK(@org.jetbrains.annotations.NotNull()
Function2<ABC, java.util.List<? extends BCD>, CDE> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC.BCD.EFG getL() {
return null;
}
public final void setL(@org.jetbrains.annotations.NotNull()
ABC.BCD.EFG p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC getCoocoo() {
return null;
}
public final void setCoocoo(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String> getCoocoo2() {
return null;
}
public final void setCoocoo2(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<ABC> getCoocoo21() {
return null;
}
public final void setCoocoo21(@org.jetbrains.annotations.NotNull()
ABC<ABC> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String, java.lang.String> getCoocoo3() {
return null;
}
public final void setCoocoo3(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String, java.lang.String> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String, ABC<ABC>> getCoocoo31() {
return null;
}
public final void setCoocoo31(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String, ABC<ABC>> p0) {
}
@org.jetbrains.annotations.NotNull()
public final ABC getNested() {
return null;
}
public final void setNested(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Object getM() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getN() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<error.NonExistentClass>>>>>>>>>> getO11() {
return null;
}
public final void setO11(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends error.NonExistentClass>>>>>>>>>> p0) {
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<ABC>>>>>>>>> getO10() {
return null;
}
public final void setO10(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends ABC>>>>>>>>> p0) {
}
@org.jetbrains.annotations.NotNull()
public final java.util.Calendar.Builder getP() {
return null;
}
public final void setP(@org.jetbrains.annotations.NotNull()
java.util.Calendar.Builder p0) {
} }
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@@ -107,191 +290,8 @@ public final class Test<G extends java.lang.Object> {
return null; return null;
} }
@org.jetbrains.annotations.NotNull() public Test() {
public final ABC getA() { super();
return null;
}
@org.jetbrains.annotations.Nullable()
public final ABC getB() {
return null;
}
@org.jetbrains.annotations.Nullable()
public final java.util.List<ABC> getC() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC getCoocoo() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String> getCoocoo2() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<ABC> getCoocoo21() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String, java.lang.String> getCoocoo3() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.String, ABC<ABC>> getCoocoo31() {
return null;
}
@org.jetbrains.annotations.Nullable()
public final java.util.List<java.util.Map<BCD, ABC<java.util.List<BCD>>>> getD() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.Map<? extends ABC, BCD>> getE() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<?> getF() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<?> getG() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC<java.lang.Integer, java.lang.String> getH() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Function2<ABC, java.util.List<BCD>, CDE> getI() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Function0<CDE> getJ() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final Function2<ABC, java.util.List<BCD>, CDE> getK() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC.BCD.EFG getL() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Object getM() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getN() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final ABC getNested() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<ABC>>>>>>>>> getO10() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<java.util.List<error.NonExistentClass>>>>>>>>>> getO11() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.Calendar.Builder getP() {
return null;
}
public final void setA(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
public final void setCoocoo(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
public final void setCoocoo2(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String> p0) {
}
public final void setCoocoo21(@org.jetbrains.annotations.NotNull()
ABC<ABC> p0) {
}
public final void setCoocoo3(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String, java.lang.String> p0) {
}
public final void setCoocoo31(@org.jetbrains.annotations.NotNull()
ABC<java.lang.String, ABC<ABC>> p0) {
}
public final void setE(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.Map<? extends ABC, ? extends BCD>> p0) {
}
public final void setF(@org.jetbrains.annotations.NotNull()
ABC<?> p0) {
}
public final void setG(@org.jetbrains.annotations.NotNull()
java.util.List<?> p0) {
}
public final void setH(@org.jetbrains.annotations.NotNull()
ABC<java.lang.Integer, java.lang.String> p0) {
}
public final void setI(@org.jetbrains.annotations.NotNull()
Function2<ABC, java.util.List<? extends BCD>, CDE> p0) {
}
public final void setJ(@org.jetbrains.annotations.NotNull()
Function0<CDE> p0) {
}
public final void setK(@org.jetbrains.annotations.NotNull()
Function2<ABC, java.util.List<? extends BCD>, CDE> p0) {
}
public final void setL(@org.jetbrains.annotations.NotNull()
ABC.BCD.EFG p0) {
}
public final void setNested(@org.jetbrains.annotations.NotNull()
ABC p0) {
}
public final void setO10(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends ABC>>>>>>>>> p0) {
}
public final void setO11(@org.jetbrains.annotations.NotNull()
java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends java.util.List<? extends error.NonExistentClass>>>>>>>>>> p0) {
}
public final void setP(@org.jetbrains.annotations.NotNull()
java.util.Calendar.Builder p0) {
} }
} }
@@ -12,39 +12,22 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class NonExistentType { public final class NonExistentType {
@org.jetbrains.annotations.NotNull()
public static final NonExistentType INSTANCE = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private static final error.NonExistentClass a = null; private static final error.NonExistentClass a = null;
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private static final java.util.List<error.NonExistentClass> b = null; private static final java.util.List<error.NonExistentClass> b = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final kotlin.jvm.functions.Function1<error.NonExistentClass, kotlin.Unit> c = null; private static final kotlin.jvm.functions.Function1<error.NonExistentClass, kotlin.Unit> c = null;
@org.jetbrains.annotations.Nullable()
private static final error.NonExistentClass d = null;
public static java.lang.String string2;
public static error.NonExistentClass coocoo; public static error.NonExistentClass coocoo;
public static error.NonExistentClass coocoo2; public static error.NonExistentClass coocoo2;
public static error.NonExistentClass coocoo21; public static error.NonExistentClass coocoo21;
public static error.NonExistentClass coocoo3; public static error.NonExistentClass coocoo3;
public static error.NonExistentClass coocoo31; public static error.NonExistentClass coocoo31;
@org.jetbrains.annotations.Nullable()
private static final error.NonExistentClass d = null;
public static java.lang.String string2;
private NonExistentType() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final error.NonExistentClass a(@org.jetbrains.annotations.NotNull() public static final NonExistentType INSTANCE = null;
error.NonExistentClass a, @org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass b(@org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final error.NonExistentClass getA() { public final error.NonExistentClass getA() {
@@ -61,31 +44,6 @@ public final class NonExistentType {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo2() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo21() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo3() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo31() {
return null;
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final error.NonExistentClass getD() { public final error.NonExistentClass getD() {
return null; return null;
@@ -96,28 +54,70 @@ public final class NonExistentType {
return null; return null;
} }
public final void setString2(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo() {
return null;
}
public final void setCoocoo(@org.jetbrains.annotations.NotNull() public final void setCoocoo(@org.jetbrains.annotations.NotNull()
error.NonExistentClass p0) { error.NonExistentClass p0) {
} }
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo2() {
return null;
}
public final void setCoocoo2(@org.jetbrains.annotations.NotNull() public final void setCoocoo2(@org.jetbrains.annotations.NotNull()
error.NonExistentClass p0) { error.NonExistentClass p0) {
} }
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo21() {
return null;
}
public final void setCoocoo21(@org.jetbrains.annotations.NotNull() public final void setCoocoo21(@org.jetbrains.annotations.NotNull()
error.NonExistentClass p0) { error.NonExistentClass p0) {
} }
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo3() {
return null;
}
public final void setCoocoo3(@org.jetbrains.annotations.NotNull() public final void setCoocoo3(@org.jetbrains.annotations.NotNull()
error.NonExistentClass p0) { error.NonExistentClass p0) {
} }
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass getCoocoo31() {
return null;
}
public final void setCoocoo31(@org.jetbrains.annotations.NotNull() public final void setCoocoo31(@org.jetbrains.annotations.NotNull()
error.NonExistentClass p0) { error.NonExistentClass p0) {
} }
public final void setString2(@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
java.lang.String p0) { public final error.NonExistentClass a(@org.jetbrains.annotations.NotNull()
error.NonExistentClass a, @org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
@org.jetbrains.annotations.NotNull()
public final error.NonExistentClass b(@org.jetbrains.annotations.NotNull()
java.lang.String s) {
return null;
}
private NonExistentType() {
super();
} }
} }
@@ -2,45 +2,57 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class PrimitiveTypes { public final class PrimitiveTypes {
@org.jetbrains.annotations.NotNull()
public static final PrimitiveTypes INSTANCE = null;
public static final boolean booleanFalse = false; public static final boolean booleanFalse = false;
public static final boolean booleanTrue = true; public static final boolean booleanTrue = true;
public static final int int0 = 0;
public static final int intMinus1000 = -1000;
public static final int intMinValue = -2147483648;
public static final int intMaxValue = 2147483647;
public static final int intHex = -1;
public static final byte byte0 = (byte)0; public static final byte byte0 = (byte)0;
public static final byte byte50 = (byte)50; public static final byte byte50 = (byte)50;
public static final short short5 = (short)5;
public static final char charC = 'C';
public static final char char0 = '\u0000'; public static final char char0 = '\u0000';
public static final char char10 = '\n'; public static final char char10 = '\n';
public static final char char13 = '\r'; public static final char char13 = '\r';
public static final char charC = 'C'; public static final long long0 = 0L;
public static final double double54 = 5.4; public static final long longMaxValue = 9223372036854775807L;
private static final double doubleMaxValue = 1.7976931348623157E308; public static final long longMinValue = -9223372036854775808L;
private static final double doubleNan = 0.0 / 0.0; public static final long longHex = 4294967295L;
private static final double doubleNegativeInfinity = -1.0 / 0.0;
private static final double doublePositiveInfinity = 1.0 / 0.0;
public static final float float54 = 5.4F; public static final float float54 = 5.4F;
private static final float floatMaxValue = 3.4028235E38F; private static final float floatMaxValue = 3.4028235E38F;
private static final float floatNan = 0.0F / 0.0F; private static final float floatNan = 0.0F / 0.0F;
private static final float floatNegativeInfinity = -1.0F / 0.0F;
private static final float floatPositiveInfinity = 1.0F / 0.0F; private static final float floatPositiveInfinity = 1.0F / 0.0F;
public static final int int0 = 0; private static final float floatNegativeInfinity = -1.0F / 0.0F;
public static final int intHex = -1; public static final double double54 = 5.4;
public static final int intMaxValue = 2147483647; private static final double doubleMaxValue = 1.7976931348623157E308;
public static final int intMinValue = -2147483648; private static final double doubleNan = 0.0 / 0.0;
public static final int intMinus1000 = -1000; private static final double doublePositiveInfinity = 1.0 / 0.0;
public static final long long0 = 0L; private static final double doubleNegativeInfinity = -1.0 / 0.0;
public static final long longHex = 4294967295L;
public static final long longMaxValue = 9223372036854775807L;
public static final long longMinValue = -9223372036854775808L;
public static final short short5 = (short)5;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final java.lang.String stringHelloWorld = "Hello, world!"; public static final java.lang.String stringHelloWorld = "Hello, world!";
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final java.lang.String stringQuotes = "quotes \" \'\'quotes"; public static final java.lang.String stringQuotes = "quotes \" \'\'quotes";
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final java.lang.String stringRN = "\r\n"; public static final java.lang.String stringRN = "\r\n";
@org.jetbrains.annotations.NotNull()
public static final PrimitiveTypes INSTANCE = null;
private PrimitiveTypes() { public final float getFloatMaxValue() {
super(); return 0.0F;
}
public final float getFloatNan() {
return 0.0F;
}
public final float getFloatPositiveInfinity() {
return 0.0F;
}
public final float getFloatNegativeInfinity() {
return 0.0F;
} }
public final double getDoubleMaxValue() { public final double getDoubleMaxValue() {
@@ -51,27 +63,15 @@ public final class PrimitiveTypes {
return 0.0; return 0.0;
} }
public final double getDoubleNegativeInfinity() {
return 0.0;
}
public final double getDoublePositiveInfinity() { public final double getDoublePositiveInfinity() {
return 0.0; return 0.0;
} }
public final float getFloatMaxValue() { public final double getDoubleNegativeInfinity() {
return 0.0F; return 0.0;
} }
public final float getFloatNan() { private PrimitiveTypes() {
return 0.0F; super();
}
public final float getFloatNegativeInfinity() {
return 0.0F;
}
public final float getFloatPositiveInfinity() {
return 0.0F;
} }
} }
@@ -27,8 +27,10 @@ public final class Test {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String prop = "A"; private final java.lang.String prop = "A";
public Test() { @Anno2()
super(); @Anno()
@java.lang.Deprecated()
public static void getProp$annotations() {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -36,9 +38,7 @@ public final class Test {
return null; return null;
} }
@Anno2() public Test() {
@Anno() super();
@java.lang.Deprecated()
public static void getProp$annotations() {
} }
} }
@@ -28,6 +28,11 @@ public final class KBox implements androidx.annotation.Box {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final androidx.annotation.Box delegate = null; private final androidx.annotation.Box delegate = null;
@org.jetbrains.annotations.NotNull()
public final androidx.annotation.Box getDelegate() {
return null;
}
public KBox(@org.jetbrains.annotations.NotNull() public KBox(@org.jetbrains.annotations.NotNull()
androidx.annotation.Box delegate) { androidx.annotation.Box delegate) {
super(); super();
@@ -38,9 +43,4 @@ public final class KBox implements androidx.annotation.Box {
public java.lang.String foo() { public java.lang.String foo() {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final androidx.annotation.Box getDelegate() {
return null;
}
} }
@@ -4,9 +4,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoArray { public abstract @interface AnnoArray {
public abstract java.lang.String[] a();
public abstract int x(); public abstract int x();
public abstract java.lang.String[] a();
} }
//////////////////// ////////////////////
@@ -18,9 +18,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoBoolean { public abstract @interface AnnoBoolean {
public abstract boolean bool();
public abstract int x(); public abstract int x();
public abstract boolean bool();
} }
//////////////////// ////////////////////
@@ -32,9 +32,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoChar { public abstract @interface AnnoChar {
public abstract char chr();
public abstract int x(); public abstract int x();
public abstract char chr();
} }
//////////////////// ////////////////////
@@ -46,9 +46,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoClass { public abstract @interface AnnoClass {
public abstract java.lang.Class<Color> c();
public abstract int x(); public abstract int x();
public abstract java.lang.Class<Color> c();
} }
//////////////////// ////////////////////
@@ -60,9 +60,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoDouble { public abstract @interface AnnoDouble {
public abstract double dbl();
public abstract int x(); public abstract int x();
public abstract double dbl();
} }
//////////////////// ////////////////////
@@ -74,9 +74,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoEnum { public abstract @interface AnnoEnum {
public abstract Color c();
public abstract int x(); public abstract int x();
public abstract Color c();
} }
//////////////////// ////////////////////
@@ -88,9 +88,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoFloat { public abstract @interface AnnoFloat {
public abstract float flt();
public abstract int x(); public abstract int x();
public abstract float flt();
} }
//////////////////// ////////////////////
@@ -102,9 +102,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoInt { public abstract @interface AnnoInt {
public abstract int i();
public abstract int x(); public abstract int x();
public abstract int i();
} }
//////////////////// ////////////////////
@@ -116,9 +116,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoIntArray { public abstract @interface AnnoIntArray {
public abstract int[] b();
public abstract int x(); public abstract int x();
public abstract int[] b();
} }
//////////////////// ////////////////////
@@ -130,9 +130,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoLong { public abstract @interface AnnoLong {
public abstract long l();
public abstract int x(); public abstract int x();
public abstract long l();
} }
//////////////////// ////////////////////
@@ -144,9 +144,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoLongArray { public abstract @interface AnnoLongArray {
public abstract long[] b();
public abstract int x(); public abstract int x();
public abstract long[] b();
} }
//////////////////// ////////////////////
@@ -158,9 +158,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface AnnoString { public abstract @interface AnnoString {
public abstract java.lang.String s();
public abstract int x(); public abstract int x();
public abstract java.lang.String s();
} }
//////////////////// ////////////////////
@@ -186,8 +186,11 @@ public final class Test {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String value = ""; private final java.lang.String value = "";
public Test() { @lib.Anno(value = "3", construct = {"C"})
super(); @lib.Anno(value = "2", construct = {"A", "B"})
@lib.Anno(value = "1")
@java.lang.Deprecated()
public static void getValue$annotations() {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -195,11 +198,8 @@ public final class Test {
return null; return null;
} }
@lib.Anno(value = "3", construct = {"C"}) public Test() {
@lib.Anno(value = "2", construct = {"A", "B"}) super();
@lib.Anno(value = "1")
@java.lang.Deprecated()
public static void getValue$annotations() {
} }
} }
@@ -20,11 +20,6 @@ public final class Product2 implements secondary.Named {
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
private java.lang.String name; private java.lang.String name;
public Product2(@org.jetbrains.annotations.NotNull()
java.lang.String otherName) {
super();
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
@java.lang.Override() @java.lang.Override()
public java.lang.String getName() { public java.lang.String getName() {
@@ -34,4 +29,9 @@ public final class Product2 implements secondary.Named {
public void setName(@org.jetbrains.annotations.Nullable() public void setName(@org.jetbrains.annotations.Nullable()
java.lang.String p0) { java.lang.String p0) {
} }
public Product2(@org.jetbrains.annotations.NotNull()
java.lang.String otherName) {
super();
}
} }
@@ -4,9 +4,9 @@ import java.lang.System;
@java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME) @java.lang.annotation.Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
public abstract @interface Anno { public abstract @interface Anno {
public abstract java.lang.String name();
public abstract StrangeEnum size(); public abstract StrangeEnum size();
public abstract java.lang.String name();
} }
//////////////////// ////////////////////
@@ -20,13 +20,13 @@ public enum StrangeEnum {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String size = null; private final java.lang.String size = null;
StrangeEnum(java.lang.String size) {
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getSize() { public final java.lang.String getSize() {
return null; return null;
} }
StrangeEnum(java.lang.String size) {
}
} }
//////////////////// ////////////////////
@@ -38,10 +38,6 @@ import java.lang.System;
public final class Test { public final class Test {
public java.lang.String simpleName; public java.lang.String simpleName;
public Test() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getSimpleName() { public final java.lang.String getSimpleName() {
return null; return null;
@@ -60,4 +56,8 @@ public final class Test {
java.lang.String a, @org.jetbrains.annotations.NotNull() java.lang.String a, @org.jetbrains.annotations.NotNull()
java.lang.String p1_949560896) { java.lang.String p1_949560896) {
} }
public Test() {
super();
}
} }
@@ -2,13 +2,13 @@ import java.lang.System;
public abstract class BaseClass { public abstract class BaseClass {
@org.jetbrains.annotations.NotNull()
public abstract Result doJob();
public BaseClass(@org.jetbrains.annotations.NotNull() public BaseClass(@org.jetbrains.annotations.NotNull()
Context context, int num, boolean bool) { Context context, int num, boolean bool) {
super(); super();
} }
@org.jetbrains.annotations.NotNull()
public abstract Result doJob();
} }
//////////////////// ////////////////////
@@ -26,16 +26,16 @@ import java.lang.System;
public final class Inheritor extends BaseClass { public final class Inheritor extends BaseClass {
public Inheritor(@org.jetbrains.annotations.NotNull()
Context context) {
super(null, 0, false);
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@java.lang.Override() @java.lang.Override()
public Result doJob() { public Result doJob() {
return null; return null;
} }
public Inheritor(@org.jetbrains.annotations.NotNull()
Context context) {
super(null, 0, false);
}
} }
//////////////////// ////////////////////
@@ -3,13 +3,13 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Foo { public final class Foo {
public Foo() {
super();
}
@org.jetbrains.annotations.Nullable() @org.jetbrains.annotations.Nullable()
public final java.lang.Object a(@org.jetbrains.annotations.NotNull() public final java.lang.Object a(@org.jetbrains.annotations.NotNull()
kotlin.coroutines.Continuation<ABC> p0) { kotlin.coroutines.Continuation<ABC> p0) {
return null; return null;
} }
public Foo() {
super();
}
} }
+27 -27
View File
@@ -21,28 +21,17 @@ public final class TopLevelKt {
public TopLevelKt() { public TopLevelKt() {
super(); super();
} }
public static final int topLevelConstProperty = 2;
private static final int topLevelProperty = 2; private static final int topLevelProperty = 2;
public static final int topLevelConstProperty = 2;
public static final void extensionFunction(@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.Nullable()
@Anno(value = "rec") public static final java.lang.String topLevelFunction() {
java.lang.String $this$extensionFunction, @org.jetbrains.annotations.NotNull()
@Anno(value = "1")
java.lang.String a, @org.jetbrains.annotations.NotNull()
@Anno(value = "2")
java.lang.String b) {
}
@org.jetbrains.annotations.NotNull()
public static final <T extends java.lang.Object>java.lang.String getExtensionProperty(@org.jetbrains.annotations.NotNull()
@Anno(value = "propRec")
T $this$extensionProperty) {
return null; return null;
} }
@Anno(value = "extpr") @org.jetbrains.annotations.Nullable()
@java.lang.Deprecated() public static final <X extends java.lang.CharSequence, T extends java.util.List<? extends X>>T topLevelGenericFunction() {
public static void getExtensionProperty$annotations(java.lang.Object p0) { return null;
} }
public static final int getTopLevelProperty() { public static final int getTopLevelProperty() {
@@ -54,20 +43,31 @@ public final class TopLevelKt {
return null; return null;
} }
public static final void extensionFunction(@org.jetbrains.annotations.NotNull()
@Anno(value = "rec")
java.lang.String $this$extensionFunction, @org.jetbrains.annotations.NotNull()
@Anno(value = "1")
java.lang.String a, @org.jetbrains.annotations.NotNull()
@Anno(value = "2")
java.lang.String b) {
}
@Anno(value = "extpr")
@java.lang.Deprecated()
public static void getExtensionProperty$annotations(java.lang.Object p0) {
}
@org.jetbrains.annotations.NotNull()
public static final <T extends java.lang.Object>java.lang.String getExtensionProperty(@org.jetbrains.annotations.NotNull()
@Anno(value = "propRec")
T $this$extensionProperty) {
return null;
}
public static final <T extends java.lang.Object>void setExtensionProperty(@org.jetbrains.annotations.NotNull() public static final <T extends java.lang.Object>void setExtensionProperty(@org.jetbrains.annotations.NotNull()
@Anno(value = "propRec") @Anno(value = "propRec")
T $this$extensionProperty, @org.jetbrains.annotations.NotNull() T $this$extensionProperty, @org.jetbrains.annotations.NotNull()
@Anno(value = "setparam") @Anno(value = "setparam")
java.lang.String setParamName) { java.lang.String setParamName) {
} }
@org.jetbrains.annotations.Nullable()
public static final java.lang.String topLevelFunction() {
return null;
}
@org.jetbrains.annotations.Nullable()
public static final <X extends java.lang.CharSequence, T extends java.util.List<? extends X>>T topLevelGenericFunction() {
return null;
}
} }
@@ -2,13 +2,14 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Boo { public final class Boo {
@org.jetbrains.annotations.NotNull()
public static final Boo INSTANCE = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String z = null; private static final java.lang.String z = null;
@org.jetbrains.annotations.NotNull()
public static final Boo INSTANCE = null;
private Boo() { @org.jetbrains.annotations.NotNull()
super(); public final java.lang.String getZ() {
return null;
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -16,9 +17,8 @@ public final class Boo {
return null; return null;
} }
@org.jetbrains.annotations.NotNull() private Boo() {
public final java.lang.String getZ() { super();
return null;
} }
} }
@@ -30,16 +30,14 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Foo { public final class Foo {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final Foo INSTANCE = null; public static final java.lang.String aString = "foo";
public static final int aInt = 3; public static final int aInt = 3;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final java.lang.String aString = "foo"; private static final java.lang.String bString = "bar";
private static final int bInt = 5; private static final int bInt = 5;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String bString = "bar";
private static int cInt = 7;
@org.jetbrains.annotations.NotNull()
private static java.lang.String cString = "baz"; private static java.lang.String cString = "baz";
private static int cInt = 7;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String d = null; private static final java.lang.String d = null;
private static final int e = 0; private static final int e = 0;
@@ -52,9 +50,12 @@ public final class Foo {
private static final java.lang.String j = null; private static final java.lang.String j = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private static final java.lang.String k = null; private static final java.lang.String k = null;
@org.jetbrains.annotations.NotNull()
public static final Foo INSTANCE = null;
private Foo() { @org.jetbrains.annotations.NotNull()
super(); public final java.lang.String getBString() {
return null;
} }
public final int getBInt() { public final int getBInt() {
@@ -62,17 +63,19 @@ public final class Foo {
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final java.lang.String getBString() { public final java.lang.String getCString() {
return null; return null;
} }
public final void setCString(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
}
public final int getCInt() { public final int getCInt() {
return 0; return 0;
} }
@org.jetbrains.annotations.NotNull() public final void setCInt(int p0) {
public final java.lang.String getCString() {
return null;
} }
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -111,11 +114,8 @@ public final class Foo {
return null; return null;
} }
public final void setCInt(int p0) { private Foo() {
} super();
public final void setCString(@org.jetbrains.annotations.NotNull()
java.lang.String p0) {
} }
} }
@@ -126,18 +126,6 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class HavingState { public final class HavingState {
@org.jetbrains.annotations.NotNull()
private final kotlin.reflect.KClass<? extends java.lang.Object> anonymous = null;
@org.jetbrains.annotations.NotNull()
private final kotlin.reflect.KClass<State> clazz = null;
@org.jetbrains.annotations.NotNull()
private final float[] floatArray = {-1.0F};
@org.jetbrains.annotations.NotNull()
private final java.lang.Integer[] intArray = {1};
@org.jetbrains.annotations.NotNull()
private final java.util.List<java.lang.Integer> intList = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.Class<State> javaClass = null;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final State state = State.START; private final State state = State.START;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
@@ -146,45 +134,23 @@ public final class HavingState {
private final java.lang.String[] stringArray = {"foo"}; private final java.lang.String[] stringArray = {"foo"};
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.util.List<java.lang.String> stringList = null; private final java.util.List<java.lang.String> stringList = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.Integer[] intArray = {1};
@org.jetbrains.annotations.NotNull()
private final float[] floatArray = {-1.0F};
@org.jetbrains.annotations.NotNull()
private final java.util.List<java.lang.Integer> intList = null;
private final int uint = 1; private final int uint = 1;
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final kotlin.UInt[] uintArray = {1}; private final kotlin.UInt[] uintArray = {1};
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.util.List<kotlin.UInt> uintList = null; private final java.util.List<kotlin.UInt> uintList = null;
public HavingState() {
super();
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final kotlin.reflect.KClass<? extends java.lang.Object> getAnonymous() { private final kotlin.reflect.KClass<State> clazz = null;
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final kotlin.reflect.KClass<State> getClazz() { private final java.lang.Class<State> javaClass = null;
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final float[] getFloatArray() { private final kotlin.reflect.KClass<? extends java.lang.Object> anonymous = null;
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Integer[] getIntArray() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.lang.Integer> getIntList() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<State> getJavaClass() {
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final State getState() { public final State getState() {
@@ -206,6 +172,21 @@ public final class HavingState {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final java.lang.Integer[] getIntArray() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final float[] getFloatArray() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.util.List<java.lang.Integer> getIntList() {
return null;
}
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public final kotlin.UInt[] getUintArray() { public final kotlin.UInt[] getUintArray() {
return null; return null;
@@ -215,6 +196,25 @@ public final class HavingState {
public final java.util.List<kotlin.UInt> getUintList() { public final java.util.List<kotlin.UInt> getUintList() {
return null; return null;
} }
@org.jetbrains.annotations.NotNull()
public final kotlin.reflect.KClass<State> getClazz() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.Class<State> getJavaClass() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final kotlin.reflect.KClass<? extends java.lang.Object> getAnonymous() {
return null;
}
public HavingState() {
super();
}
} }
//////////////////// ////////////////////
@@ -26,8 +26,9 @@ public final class User {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String name = "John"; private final java.lang.String name = "John";
public User() { @org.jetbrains.annotations.NotNull()
super(); public final java.lang.String getName() {
return null;
} }
public User(@org.jetbrains.annotations.NotNull() public User(@org.jetbrains.annotations.NotNull()
@@ -35,8 +36,7 @@ public final class User {
super(); super();
} }
@org.jetbrains.annotations.NotNull() public User() {
public final java.lang.String getName() { super();
return null;
} }
} }
@@ -25,14 +25,14 @@ public final class Simple {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
public static final test.Simple.Companion Companion = null; public static final test.Simple.Companion Companion = null;
public Simple() {
super();
}
@MyAnnotation() @MyAnnotation()
public final void myMethod() { public final void myMethod() {
} }
public Simple() {
super();
}
@kotlin.Metadata() @kotlin.Metadata()
public static final class NestedClass { public static final class NestedClass {
@@ -28,15 +28,6 @@ public final class State {
@org.jetbrains.annotations.NotNull() @org.jetbrains.annotations.NotNull()
private final java.lang.String someString = null; private final java.lang.String someString = null;
public State(int someInt, long someLong) {
super();
}
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) {
super();
}
public final int getSomeInt() { public final int getSomeInt() {
return 0; return 0;
} }
@@ -49,4 +40,13 @@ public final class State {
public final java.lang.String getSomeString() { public final java.lang.String getSomeString() {
return null; return null;
} }
public State(int someInt, long someLong, @org.jetbrains.annotations.NotNull()
java.lang.String someString) {
super();
}
public State(int someInt, long someLong) {
super();
}
} }
@@ -16,16 +16,16 @@ import java.lang.System;
@kotlin.Metadata() @kotlin.Metadata()
public final class Simple { public final class Simple {
public Simple() { @MyAnnotation()
super(); public final void myMethod() {
} }
public final int heavyMethod() { public final int heavyMethod() {
return 0; return 0;
} }
@MyAnnotation() public Simple() {
public final void myMethod() { super();
} }
} }