convert raw literal to string intention (IDEA-189855)

This commit is contained in:
Anna.Kozlova
2018-04-13 20:06:15 +02:00
parent d2cf6479d5
commit 9bc349a38b
9 changed files with 121 additions and 13 deletions
@@ -0,0 +1,8 @@
class A {
{
String s = "a\n" +
" symbol to escape: \"\\\" (slash)\n" +
" and something else as well\n" +
" ";
}
}
@@ -0,0 +1,8 @@
class A {
{
String s = `a
symbol to escape: "\" (slash)
and somet<caret>hing else as well
`;
}
}