JS: introduce new flat JS declaration structure

This commit is contained in:
Alexey Andreev
2016-10-03 17:37:58 +03:00
parent f1ae9949fe
commit f9a392fdec
42 changed files with 1428 additions and 933 deletions
@@ -0,0 +1,10 @@
class A
class B {
val A.x: String
get() = "OK"
fun result(a: A) = a.x
}
fun box() = B().result(A())