Java: Implemented completion assistance for Var/Method Handle - suggest field/method name, autocomplete the signature (IDEA-167319)

This commit is contained in:
Pavel Dolgov
2017-03-06 15:59:04 +03:00
parent be11ff380a
commit c1bb394630
24 changed files with 699 additions and 41 deletions
@@ -0,0 +1,8 @@
import java.lang.invoke.*;
public class Main {
void foo() throws Throwable {
MethodHandles.Lookup lookup = MethodHandles.lookup();
lookup.findVirtual(Test.class, "m<caret>");
}
}