Postfix templates: add a template to wrap an expression with a function call (IDEA-122461)

This commit is contained in:
Alexander Zolotov
2018-02-13 14:09:07 +03:00
parent a096a0c792
commit d20f061afe
8 changed files with 81 additions and 0 deletions
@@ -0,0 +1,6 @@
public class Foo {
void m(boolean b) {
b.arg<caret>
}
}
@@ -0,0 +1,6 @@
public class Foo {
void m(boolean b) {
functionCall(b<caret>)
}
}