reparse from text after PSI changes in incorrect code (IDEA-188164)

This commit is contained in:
peter
2018-04-23 15:19:17 +02:00
parent 52cb01098a
commit 3387597e00
4 changed files with 40 additions and 5 deletions
@@ -0,0 +1,6 @@
class Foo {
void method(String s) {}
void foo() {
equals(method<selection>"a"</selection>);
}
}
@@ -0,0 +1,6 @@
class Foo {
void method(String s) {}
void foo() {
equals(method("a"));
}
}