KT-805 Auto import on code completion insert (Initial version)

This commit is contained in:
Nikolay Krasko
2011-12-15 17:19:00 +04:00
parent d604591c5c
commit 26ec797444
15 changed files with 565 additions and 90 deletions
@@ -0,0 +1,12 @@
// "Import Class" "true"
namespace a
import a.b.M
fun test() {
val v = M
}
namespace b {
class M() { }
}
@@ -0,0 +1,10 @@
// "Import Class" "true"
namespace a
fun test() {
val v = <caret>M
}
namespace b {
class M() { }
}