JS: add tests for recompilation of only some files in a project

This commit is contained in:
Alexey Andreev
2017-02-17 19:10:12 +03:00
parent 49dacfcd76
commit c85108602a
16 changed files with 379 additions and 138 deletions
+12
View File
@@ -0,0 +1,12 @@
// FILE: a.kt
private fun bar(): String = "O"
internal fun foo(): String = bar()
fun baz(): String = "K"
// FILE: b.kt
// RECOMPILE
fun box(): String = foo() + baz()