mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
IDEA-106141 (trailing annotations excluded from an incomplete reference expression)
I.e. in "X. \n @A public T m()", @A is no longer a part of "X.".
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
Object o = new Object();
|
||||
String s = o.<caret>
|
||||
|
||||
@Annotation
|
||||
String myAnnotatedMethod() { return ""; }
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class MyClass {
|
||||
Object o = new Object();
|
||||
String s = o.toString()<caret>
|
||||
|
||||
@Annotation
|
||||
String myAnnotatedMethod() { return ""; }
|
||||
}
|
||||
Reference in New Issue
Block a user