mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
search for functional interface implementations by lambdas and method references: change signature/find usages; to be continued (IDEA-104286; IDEA-90824)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
interface SAM {
|
||||
void <caret>foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
bar(() -> {});
|
||||
}
|
||||
|
||||
void bar(SAM sam){}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
interface SAM {
|
||||
void <caret>foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
SAM sam = () -> {};
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
interface SA<caret>M {
|
||||
void foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
bar(() -> {});
|
||||
}
|
||||
|
||||
void bar(SAM sam){}
|
||||
}
|
||||
Reference in New Issue
Block a user