Kapt: Add runtime library, move all modules inside the 'kapt3' directory

This commit is contained in:
Yan Zhulanow
2017-11-02 11:15:15 +09:00
parent b74ef72af7
commit fd84ecda54
140 changed files with 110 additions and 58 deletions
@@ -0,0 +1,44 @@
@kotlin.Metadata()
public final class JvmStaticTest {
private final byte three = (byte)3;
private final char d = 'D';
private static final int one = 1;
private static final int two = 2;
public static final char c = 'C';
public static final JvmStaticTest.Companion Companion = null;
public final byte getThree() {
return 0;
}
public final char getD() {
return '\u0000';
}
public JvmStaticTest() {
super();
}
public static final int getOne() {
return 0;
}
@kotlin.Metadata()
public static final class Companion {
public static void one$annotations() {
}
public final int getOne() {
return 0;
}
public final int getTwo() {
return 0;
}
private Companion() {
super();
}
}
}