java: fix completing class name in its supertype's second generic type argument

This commit is contained in:
peter
2019-03-26 16:10:32 +01:00
parent 26e8df8cba
commit 0a4514d50f
4 changed files with 20 additions and 9 deletions
@@ -0,0 +1,2 @@
interface Super<A,B> {}
class Sub implements Super<Sub, Su<caret>> {}
@@ -0,0 +1,2 @@
interface Super<A,B> {}
class Sub implements Super<Sub, Sub<caret>> {}