JS: add tests for recompilation of only some files in a project
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user