mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-50631 Chaining second smart completion should suggest possible one-element arrays as qualifier
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class Bar {
|
||||
Goo getGoo();
|
||||
}
|
||||
class Goo {}
|
||||
|
||||
class Foo {
|
||||
{
|
||||
Bar[] ref = new Bar[1];
|
||||
Goo g = ref[0].getGoo();<caret>
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class Bar {
|
||||
Goo getGoo();
|
||||
}
|
||||
class Goo {}
|
||||
|
||||
class Foo {
|
||||
{
|
||||
Bar[] ref = new Bar[1];
|
||||
Goo g = <caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user