postfix templates incorrect expand IDEA-133867

This commit is contained in:
Andrey Starovoyt
2014-12-04 21:20:26 +03:00
parent 2a2b009535
commit 0b767366cb
28 changed files with 203 additions and 9 deletions
@@ -0,0 +1,9 @@
public class Foo {
void m() {
methodCall(.assert<caret>
}
boolean methodCall(String s) {
return null;
}
}
@@ -0,0 +1,9 @@
public class Foo {
void m() {
methodCall(.assert <caret>
}
boolean methodCall(String s) {
return null;
}
}
@@ -1,8 +1,8 @@
public class Foo {
void m() {
assert is();<caret>
is();.assert <caret>
}
boolean is() {
return false;
}