Add dependency from annotation extraction mechanisms to the prototype, with tests

This commit is contained in:
Ilya Chernikov
2016-06-06 12:25:52 +02:00
committed by Pavel V. Talanov
parent 3f5a2c2781
commit 402e8c1e3e
7 changed files with 149 additions and 16 deletions
@@ -85,7 +85,7 @@ fun classpathFromProperty(): List<String> =
.map { File(it).canonicalPath }
} ?: emptyList()
private fun URL.toFile() =
fun URL.toFile() =
try {
File(toURI().schemeSpecificPart)
}