mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-118988 completion could add 'value=' in annotation
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
@interface Anno {
|
||||
String value();
|
||||
String bar();
|
||||
String goo();
|
||||
}
|
||||
|
||||
@Anno("a", <caret>)
|
||||
class Foo {}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
@interface Anno {
|
||||
String value();
|
||||
String bar();
|
||||
String goo();
|
||||
}
|
||||
|
||||
@Anno(value = "a", bar = <caret>)
|
||||
class Foo {}
|
||||
Reference in New Issue
Block a user