Refactor daemon interface

This commit is contained in:
Alexey Tsvetkov
2016-12-28 21:04:25 +03:00
parent d19a92bab5
commit d4d1d5ad0f
16 changed files with 461 additions and 84 deletions
@@ -24,7 +24,7 @@ interface ICReporter {
// used in Gradle plugin
@Suppress("unused")
fun reportCompileIteration(sourceFiles: Iterable<File>, exitCode: ExitCode) {}
fun reportCompileIteration(sourceFiles: Collection<File>, exitCode: ExitCode) {}
fun pathsAsString(files: Iterable<File>): String =
files.map { it.canonicalPath }.joinToString()