summaryrefslogtreecommitdiffstats
path: root/runtime/syntax/testdir/input/java_escapes.java
diff options
context:
space:
mode:
authorAliaksei Budavei <32549825+zzzyxwvut@users.noreply.github.com>2024-03-03 17:51:01 +0300
committerGitHub <noreply@github.com>2024-03-03 15:51:01 +0100
commitb3030b653bbdc08c91138001d1987d804f6ebf46 (patch)
tree058821e442829afbdd71dd4f778857bfc6abcdee /runtime/syntax/testdir/input/java_escapes.java
parente93afc2e612647e79e1082096ffd6c61e01ac691 (diff)
runtime(java): Recognise text blocks (#14128)
Also, accept as valid the space escape sequence `\s`. Also, consistently use the claimed `javaDebug` prefix for syntax group definitions kept under `g:java_highlight_debug`. Since `javaStringError` is commented out for its generality, let's comment out `javaDebugStringError`, its copy, as well. References: https://openjdk.org/jeps/378 https://docs.oracle.com/javase/specs/jls/se17/html/jls-3.html#jls-3.10.7 Closes #10910. Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/syntax/testdir/input/java_escapes.java')
-rw-r--r--runtime/syntax/testdir/input/java_escapes.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/testdir/input/java_escapes.java b/runtime/syntax/testdir/input/java_escapes.java
index 624d4fcd89..eadaa420b4 100644
--- a/runtime/syntax/testdir/input/java_escapes.java
+++ b/runtime/syntax/testdir/input/java_escapes.java
@@ -11,13 +11,13 @@ class EscapesTests
static {
char ee[] = {
- '\b', '\t',
+ '\b', '\s', '\t',
'\n', '\f', '\r',
'\"', '\'', '\\',
};
System.out.println(new String[] {
- "\b", "\t",
+ "\b", "\s", "\t",
"\n", "\f", "\r",
"\"", "\'", "\\",
});