IDEA-165006 Support chained completion for method references in Java 8+

This commit is contained in:
peter
2017-06-05 19:20:02 +02:00
parent c578a4ede7
commit 03a663c63e
6 changed files with 51 additions and 24 deletions
@@ -0,0 +1,5 @@
class A {
{
Runnable r = Syst::setOu<caret>
}
}
@@ -0,0 +1,5 @@
class A {
{
Runnable r = System::setOut;<caret>
}
}