mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
Fix lexing Java string literals containing a broken unicode escape (IDEA-293903)
GitOrigin-RevId: 3d2e29f7123b34b9f4837e008390636a01372802
This commit is contained in:
committed by
intellij-monorepo-bot
parent
4572d95998
commit
f64ade1d8f
@@ -28,7 +28,7 @@ public class a {
|
||||
};
|
||||
|
||||
String s1 = <error descr="Illegal escape character in string literal">"\xd"</error>;
|
||||
String s11= <error descr="Illegal line end in string literal">"\udX";</error><EOLError descr="';' expected"></EOLError>
|
||||
String s11= <error descr="Illegal escape character in string literal">"\udX"</error>;
|
||||
String s12= <error descr="Illegal escape character in string literal">"c:\TEMP\test.jar"</error>;
|
||||
String s3 = "";
|
||||
String s4 = "\u0000";
|
||||
|
||||
Reference in New Issue
Block a user