Highlight incorrect escape instead of entire string literal

GitOrigin-RevId: 5455c5b43f8b19161dfa23643c197c8136cbbeff
This commit is contained in:
Bas Leijdekkers
2022-07-18 12:30:44 +02:00
committed by intellij-monorepo-bot
parent 30ab60d37d
commit 304a1c2df5
6 changed files with 126 additions and 111 deletions

View File

@@ -16,6 +16,10 @@ class C {
\
""";
String valid3 = """\u000Ahello""";
String valid4 = """\u0020\u0020\u0020\u000Dhello""";
String valid5 = \u0022\u0022\u0022\u0020\u0020\u0020\u000Ahello""";
String backSlash1 = """
\u005c\""";
}