mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 21:55:01 +07:00
IDEA-158094 Auto-completion popup could display values when autocompleting constants
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
class X {
|
||||
{
|
||||
E.FIELD<caret>
|
||||
}
|
||||
}
|
||||
|
||||
enum E {
|
||||
FIELD1( "x"),
|
||||
FIELD2("y") {
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
},
|
||||
FIELD3 {};
|
||||
|
||||
E(String s) {
|
||||
}
|
||||
|
||||
public static final int FIELD4 = 42;
|
||||
}
|
||||
Reference in New Issue
Block a user