KT-60821 [KAPT] Generate stubs without KaptTreeMaker
Merge-request: KT-MR-12979 Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
0fba58eee7
commit
9c2ce475e2
@@ -44,6 +44,7 @@ class Test4 {
|
||||
}
|
||||
|
||||
enum class EnumError {
|
||||
/** This is the one */
|
||||
One {
|
||||
override fun doIt() = ""
|
||||
|
||||
|
||||
+2
-2
@@ -135,10 +135,10 @@ public enum Em {
|
||||
@kotlin.Metadata()
|
||||
public final class Foo {
|
||||
private final boolean z = true;
|
||||
private final byte b = (byte)0;
|
||||
private final byte b = 0;
|
||||
private final char c = 'c';
|
||||
private final char c2 = '\n';
|
||||
private final short sh = (short)10;
|
||||
private final short sh = 10;
|
||||
private final int i = 10;
|
||||
private final long l = -10L;
|
||||
private final float f = 1.0F;
|
||||
|
||||
@@ -79,7 +79,7 @@ public final class JvmStaticTest {
|
||||
private static final int one = 1;
|
||||
public static final int two = 2;
|
||||
public static final char c = 'C';
|
||||
public final byte three = (byte)3;
|
||||
public final byte three = 3;
|
||||
public final char d = 'D';
|
||||
|
||||
public JvmStaticTest() {
|
||||
|
||||
@@ -150,9 +150,9 @@ public final class PrimitiveTypes {
|
||||
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 byte50 = (byte)50;
|
||||
public static final short short5 = (short)5;
|
||||
public static final byte byte0 = 0;
|
||||
public static final byte byte50 = 50;
|
||||
public static final short short5 = 5;
|
||||
public static final char charC = 'C';
|
||||
public static final char char0 = '\u0000';
|
||||
public static final char char10 = '\n';
|
||||
|
||||
Reference in New Issue
Block a user