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,15 @@
import test.C
public class JavaClass1 {
public static C f() {
return new C();
}
public static C g() {
return new C();
}
public static int h() {
return 0;
}
}