mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
Java: more accurate highlighting of illegal escape sequences in strings
GitOrigin-RevId: 6461c554d2e44cf4e33278daefa924c73d0ca662
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f0f3f4098c
commit
b31a73dd10
@@ -6,7 +6,7 @@ class C {
|
||||
String invalid3 = <error descr="Illegal text block start: missing new line after opening quotes">"""\\n """</error>;
|
||||
|
||||
String s9 = "\s";
|
||||
String s10 = <error descr="Illegal escape character in string literal">" \ "</error>;
|
||||
String s10 = " <error descr="Illegal escape character in string literal">\ </error>";
|
||||
|
||||
String valid1 = """
|
||||
\s
|
||||
|
||||
Reference in New Issue
Block a user