Static members completion works in smart completion + fixed incorrect finding of java method descriptor that caused duplicated items

This commit is contained in:
Valentin Kipyatkov
2015-11-05 23:02:28 +03:00
parent 1283f5f4e1
commit 3cda866af0
23 changed files with 272 additions and 42 deletions
@@ -0,0 +1,9 @@
package dependency1
import test.C
object O1 {
fun foo(): C = C()
fun bar(): C = C()
fun x(): String = ""
}