[KAPT] Improve stub formatting; check raw stubs in tests
Merge-request: KT-MR-14244 Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
c5e6197690
commit
9688c3e761
@@ -15,8 +15,7 @@ public abstract interface FooComponent {
|
||||
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static java.lang.String create(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String context) {
|
||||
public static java.lang.String create(@org.jetbrains.annotations.NotNull() java.lang.String context) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@@ -41,15 +40,14 @@ public abstract interface FooComponent {
|
||||
|
||||
@kotlin.jvm.JvmStatic()
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public final java.lang.String create(@org.jetbrains.annotations.NotNull()
|
||||
java.lang.String context) {
|
||||
public final java.lang.String create(@org.jetbrains.annotations.NotNull() java.lang.String context) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////
|
||||
|
||||
////////////////////
|
||||
|
||||
/**
|
||||
* public final class JvmStaticTest : kotlin/Any {
|
||||
@@ -76,10 +74,15 @@ public abstract interface FooComponent {
|
||||
public final class JvmStaticTest {
|
||||
@org.jetbrains.annotations.NotNull()
|
||||
public static final JvmStaticTest.Companion Companion = null;
|
||||
|
||||
private static final int one = 1;
|
||||
|
||||
public static final int two = 2;
|
||||
|
||||
public static final char c = 'C';
|
||||
|
||||
public final byte three = 3;
|
||||
|
||||
public final char d = 'D';
|
||||
|
||||
public JvmStaticTest() {
|
||||
|
||||
Reference in New Issue
Block a user