Support mapping between Kotlin functions and JVM methods/constructors

This commit is contained in:
Alexander Udalov
2015-07-15 23:33:37 +03:00
parent 93656c93c1
commit 936bede8b1
14 changed files with 323 additions and 38 deletions

View File

@@ -0,0 +1,7 @@
public class javaConstructor {
public final String result;
public javaConstructor(String result) {
this.result = result;
}
}