lambda/method refs: provide super class navigation - ctrl-u/line markers (IDEA-120160)

This commit is contained in:
Anna Kozlova
2014-03-04 13:46:27 +01:00
parent 179bdc5ee7
commit a4977be1d5
9 changed files with 144 additions and 25 deletions
@@ -0,0 +1,9 @@
interface I {
void <caret>run();
}
class Foo {
{
I i = () -> {};
}
}
@@ -0,0 +1,9 @@
interface I {
void run();
}
class Foo {
{
I i = ()<caret> -> {};
}
}
@@ -0,0 +1,9 @@
interface I {
void run();
}
class Foo {
{
I i = ()<caret> -> {};
}
}