mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
method references: smart completion to filter by return type
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
interface I {
|
||||
int foo();
|
||||
}
|
||||
|
||||
static int aa() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
{
|
||||
I i = Test::aa
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
class Test {
|
||||
interface I {
|
||||
int foo();
|
||||
}
|
||||
|
||||
static int aa() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
{
|
||||
I i = Test::<caret>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -4,6 +4,6 @@ class Test {
|
||||
}
|
||||
|
||||
{
|
||||
I i = Test::<caret>
|
||||
I i = Unknown::<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user