turansky
05/30/2017, 10:41 PMbashor
05/31/2017, 3:32 PMbashor
05/31/2017, 3:33 PMexternal class A {
companion object {
fun foo()
val bar: Int
}
}
fun test() {
A.foo()
A.bar
}
Will be translated to:
//...
function test() {
A.foo();
A.bar;
}
//...
turansky
06/03/2017, 1:28 AMturansky
06/03/2017, 1:29 AMbashor
06/03/2017, 5:29 AMbashor
06/03/2017, 5:31 AMbashor
06/03/2017, 5:32 AM