mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
convert string to raw string literal intention (IDEA-189855)
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
class A {
|
||||
{
|
||||
String s = `a"
|
||||
"b
|
||||
c \`;
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class A {
|
||||
{
|
||||
String s = "a<caret>\"\n" +
|
||||
"\"b\n" +
|
||||
"c \\";
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class A {
|
||||
{
|
||||
String s = ``a"
|
||||
"b`
|
||||
c \``;
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class A {
|
||||
{
|
||||
String s = "a<caret>\"\n" +
|
||||
"\"b`\n" +
|
||||
"c \\";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user