Import insertion algorithm

This commit is contained in:
Valentin Kipyatkov
2015-01-22 23:04:32 +03:00
parent 975b67ed29
commit dfe71ef7ae
83 changed files with 1033 additions and 73 deletions
@@ -0,0 +1,14 @@
// IMPORT: java.util.HashMap
package p
import java.sql.*
import java.util.HashSet as JavaHashSet // alias import should not be dropped
import java.util.concurrent // import of package should not be dropped because packages are not imported by *
import java.util.*
import java.util.Date
fun foo() {
val v1 = JavaHashSet()
val v2 = Date()
val v3 = ArrayList()
}