IDEA-134518 Insert "instanceof" completion variant on typing "!" (exclamation mark)

This commit is contained in:
peter
2015-01-14 18:48:39 +01:00
parent 46dd0ba792
commit cccd245a5f
5 changed files with 48 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
class Foo {
void test() {
if (o in<caret>x) {
}
}
}

View File

@@ -0,0 +1,7 @@
class Foo {
void test() {
if (!(o instanceof <caret>)x) {
}
}
}