split raw string literal (IDEA-190765)

This commit is contained in:
Anna Kozlova
2018-05-02 20:06:11 +02:00
parent e137127cc1
commit ef1a26388f
9 changed files with 119 additions and 3 deletions
@@ -0,0 +1,5 @@
class Test {
{
String s = ```ab``` <caret>+ ```c```;
}
}
@@ -0,0 +1,5 @@
class Test {
{
String s = ```ab<caret>c```;
}
}
@@ -0,0 +1,5 @@
class Test {
{
String s = ```ab<caret>`c```;
}
}