JavaHighlightingLexer: support two new escape sequences in string literals (IDEA-231527)

GitOrigin-RevId: ca884a706c6ae4056c6534c9d5e84aeb8bef5b71
This commit is contained in:
Artemiy Sartakov
2020-01-28 05:42:24 +00:00
committed by intellij-monorepo-bot
parent 608c3b5e0b
commit a8e1ee46c9
10 changed files with 150 additions and 53 deletions
@@ -22,6 +22,8 @@ class UnsupportedFeatures {
switch (<error descr="Incompatible types. Found: 'java.lang.annotation.ElementType', required: 'byte, char, short or int'">t</error>) { }
String raw = <error descr="Text block literals are not supported at language level '1.4'">"""hi there"""</error>;
String spaceEscapeSeq = <error descr="'\s' and '\' escape sequences are not supported at language level '1.4'">"\s"</error>;
}
}