mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-88844 Complete enum members in annotations when type is obvious
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
enum TestEnum { TEXT1, TEXT2 }
|
||||
public @interface TestAnnotation { TestEnum value(); }
|
||||
|
||||
@TestAnnotation(Tex<caret>)
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
enum TestEnum { TEXT1, TEXT2 }
|
||||
public @interface TestAnnotation { TestEnum value(); }
|
||||
|
||||
@TestAnnotation(TestEnum.TEXT1<caret>)
|
||||
+1
@@ -993,6 +993,7 @@ public class ListUtils {
|
||||
|
||||
public void testSuggestExpectedTypeMembers() throws Throwable { doTest('\n') }
|
||||
public void testSuggestExpectedTypeMembersInCall() throws Throwable { doTest('\n') }
|
||||
public void testSuggestExpectedTypeMembersInAnno() throws Throwable { doTest('\n') }
|
||||
public void testExpectedTypesDotSelectsItem() throws Throwable { doTest('.') }
|
||||
|
||||
public void testExpectedTypeMembersVersusStaticImports() throws Throwable {
|
||||
|
||||
Reference in New Issue
Block a user