Files
openide/java/java-tests/testData/codeInsight/template/postfix/templates/var/anonymous.java
T
Anna.Kozlova 614deb2e24 postfix completion: inplace introduce variable: ensure doc committed when handler is started inside writeAction
test: switch on inplace mode in tests
EA-86900 - RE: PostprocessReformattingAspect.beforeDocumentChanged
2016-10-14 09:57:28 +02:00

7 lines
130 B
Java

public class Foo {
void m() {
foo(new Runnable() {public void run()}.var<caret>);
}
void foo(Runnable r) {}
}