Smart completion: offer class instantiating choice

This commit is contained in:
Valentin Kipyatkov
2013-11-12 16:16:59 +04:00
parent 80ab043d21
commit 2d3b0ffc0b
33 changed files with 404 additions and 119 deletions
@@ -1,5 +1,5 @@
class Foo
class Bar : Foo
open class Foo
class Bar : Foo()
val foo = Foo()
val bar = Bar()
@@ -24,3 +24,4 @@ fun f3() : String{}
// EXIST: f1
// EXIST: f2
// ABSENT: f3
// EXIST: Foo@Foo()