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,9 @@
interface I {
fun foo() = "OK"
}
interface J : I
class A : J
fun box() = A().foo()