IDEA-121756 Don't provide postfix completion options in java string literals

This commit is contained in:
Alexander Zolotov
2014-03-06 21:54:52 +04:00
parent c738a20ef9
commit 8d6f72b2ca
6 changed files with 60 additions and 5 deletions
@@ -0,0 +1,5 @@
public class Foo {
void m(Object o) {
Integer string = (Integer.parseInt("test.test.cast<caret>"));
}
}
@@ -0,0 +1,5 @@
public class Foo {
void m(Object o) {
Integer string = (Integer.parseInt("test.test.cast <caret>"));
}
}
@@ -0,0 +1,5 @@
public class Foo {
void m(Object o) {
Integer string = (Integer.parseInt("test.test".cast<caret>));
}
}
@@ -0,0 +1,5 @@
public class Foo {
void m(Object o) {
Integer string = (Integer.parseInt((() "test.test")<caret>));
}
}