CreateSwitchIntention shouldn't throw on malformed strings

This commit is contained in:
peter
2018-07-24 22:02:00 +02:00
parent 2c01f288f5
commit b52aba08d7
4 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class Test {
void m() {
<caret>"\"
}
}

View File

@@ -0,0 +1,5 @@
class Test {
void m() {
<caret>switch ("\") {}
}
}