annotate runtime/syntax/testdir/input/java_escapes.java @ 34468:f5d114f7440e

runtime(java): Recognise text blocks (#14128) Commit: https://github.com/vim/vim/commit/b3030b653bbdc08c91138001d1987d804f6ebf46 Author: Aliaksei Budavei <32549825+zzzyxwvut@users.noreply.github.com> Date: Sun Mar 3 17:51:01 2024 +0300 runtime(java): Recognise text blocks (https://github.com/vim/vim/issues/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>
author Christian Brabandt <cb@256bit.org>
date Sun, 03 Mar 2024 16:00:10 +0100
parents 315c0d987fd2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
34466
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 class EscapesTests
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 { // javap -constants EscapesTests.class
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 // static final String hello = "hello";
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 \u0073\u0074\u0061\u0074\u0069\u0063
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 \u0066\u0069\u006e\u0061\u006c
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6 \u0053\u0074\u0072\u0069\u006e\u0067
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 \u0068\u0065\u006c\u006c\u006f
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 \u003d
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 \u0022\u0068\u0065\u006c\u006c\u006f\u0022
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 \u003b
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 static {
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 char ee[] = {
34468
f5d114f7440e runtime(java): Recognise text blocks (#14128)
Christian Brabandt <cb@256bit.org>
parents: 34466
diff changeset
14 '\b', '\s', '\t',
34466
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 '\n', '\f', '\r',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16 '\"', '\'', '\\',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17 };
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 System.out.println(new String[] {
34468
f5d114f7440e runtime(java): Recognise text blocks (#14128)
Christian Brabandt <cb@256bit.org>
parents: 34466
diff changeset
20 "\b", "\s", "\t",
34466
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 "\n", "\f", "\r",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 "\"", "\'", "\\",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 });
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 char oo[] = {
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 '\0', '\1', '\2', '\3', '\4', '\5', '\6', '\7',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 '\00', '\01', '\02', '\03', '\04', '\05', '\06', '\07',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 '\10', '\11', '\12', '\13', '\14', '\15', '\16', '\17',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 '\20', '\21', '\22', '\23', '\24', '\25', '\26', '\27',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 '\30', '\31', '\32', '\33', '\34', '\35', '\36', '\37',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35 '\40', '\41', '\42', '\43', '\44', '\45', '\46', '\47',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 '\50', '\51', '\52', '\53', '\54', '\55', '\56', '\57',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 '\60', '\61', '\62', '\63', '\64', '\65', '\66', '\67',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 '\70', '\71', '\72', '\73', '\74', '\75', '\76', '\77',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 '\010', '\011', '\012', '\013', '\014', '\015', '\016', '\017',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 '\020', '\021', '\022', '\023', '\024', '\025', '\026', '\027',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42 '\030', '\031', '\032', '\033', '\034', '\035', '\036', '\037',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 '\040', '\041', '\042', '\043', '\044', '\045', '\046', '\047',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 '\050', '\051', '\052', '\053', '\054', '\055', '\056', '\057',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 '\060', '\061', '\062', '\063', '\064', '\065', '\066', '\067',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 '\070', '\071', '\072', '\073', '\074', '\075', '\076', '\077',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 '\100', '\101', '\102', '\103', '\104', '\105', '\106', '\107',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 '\110', '\111', '\112', '\113', '\114', '\115', '\116', '\117',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 '\120', '\121', '\122', '\123', '\124', '\125', '\126', '\127',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 '\130', '\131', '\132', '\133', '\134', '\135', '\136', '\137',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
52 '\140', '\141', '\142', '\143', '\144', '\145', '\146', '\147',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53 '\150', '\151', '\152', '\153', '\154', '\155', '\156', '\157',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
54 '\160', '\161', '\162', '\163', '\164', '\165', '\166', '\167',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55 '\170', '\171', '\172', '\173', '\174', '\175', '\176', '\177',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 '\200', '\201', '\202', '\203', '\204', '\205', '\206', '\207',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 '\210', '\211', '\212', '\213', '\214', '\215', '\216', '\217',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 '\220', '\221', '\222', '\223', '\224', '\225', '\226', '\227',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 '\230', '\231', '\232', '\233', '\234', '\235', '\236', '\237',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 '\240', '\241', '\242', '\243', '\244', '\245', '\246', '\247',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 '\250', '\251', '\252', '\253', '\254', '\255', '\256', '\257',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 '\260', '\261', '\262', '\263', '\264', '\265', '\266', '\267',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63 '\270', '\271', '\272', '\273', '\274', '\275', '\276', '\277',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 '\300', '\301', '\302', '\303', '\304', '\305', '\306', '\307',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 '\310', '\311', '\312', '\313', '\314', '\315', '\316', '\317',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
66 '\320', '\321', '\322', '\323', '\324', '\325', '\326', '\327',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67 '\330', '\331', '\332', '\333', '\334', '\335', '\336', '\337',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 '\340', '\341', '\342', '\343', '\344', '\345', '\346', '\347',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 '\350', '\351', '\352', '\353', '\354', '\355', '\356', '\357',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70 '\360', '\361', '\362', '\363', '\364', '\365', '\366', '\367',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 '\370', '\371', '\372', '\373', '\374', '\375', '\376', '\377',
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 };
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74 System.out.println(new String[] {
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75 "\0", "\1", "\2", "\3", "\4", "\5", "\6", "\7",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 "\00", "\01", "\02", "\03", "\04", "\05", "\06", "\07",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79 "\000", "\001", "\002", "\003", "\004", "\005", "\006", "\007",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81 "\10", "\11", "\12", "\13", "\14", "\15", "\16", "\17",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
82 "\20", "\21", "\22", "\23", "\24", "\25", "\26", "\27",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 "\30", "\31", "\32", "\33", "\34", "\35", "\36", "\37",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84 "\40", "\41", "\42", "\43", "\44", "\45", "\46", "\47",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85 "\50", "\51", "\52", "\53", "\54", "\55", "\56", "\57",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86 "\60", "\61", "\62", "\63", "\64", "\65", "\66", "\67",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87 "\70", "\71", "\72", "\73", "\74", "\75", "\76", "\77",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89 "\010", "\011", "\012", "\013", "\014", "\015", "\016", "\017",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 "\020", "\021", "\022", "\023", "\024", "\025", "\026", "\027",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 "\030", "\031", "\032", "\033", "\034", "\035", "\036", "\037",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92 "\040", "\041", "\042", "\043", "\044", "\045", "\046", "\047",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 "\050", "\051", "\052", "\053", "\054", "\055", "\056", "\057",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 "\060", "\061", "\062", "\063", "\064", "\065", "\066", "\067",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 "\070", "\071", "\072", "\073", "\074", "\075", "\076", "\077",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 "\100", "\101", "\102", "\103", "\104", "\105", "\106", "\107",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
98 "\110", "\111", "\112", "\113", "\114", "\115", "\116", "\117",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99 "\120", "\121", "\122", "\123", "\124", "\125", "\126", "\127",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 "\130", "\131", "\132", "\133", "\134", "\135", "\136", "\137",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101 "\140", "\141", "\142", "\143", "\144", "\145", "\146", "\147",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 "\150", "\151", "\152", "\153", "\154", "\155", "\156", "\157",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103 "\160", "\161", "\162", "\163", "\164", "\165", "\166", "\167",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 "\170", "\171", "\172", "\173", "\174", "\175", "\176", "\177",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 "\200", "\201", "\202", "\203", "\204", "\205", "\206", "\207",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106 "\210", "\211", "\212", "\213", "\214", "\215", "\216", "\217",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 "\220", "\221", "\222", "\223", "\224", "\225", "\226", "\227",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 "\230", "\231", "\232", "\233", "\234", "\235", "\236", "\237",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 "\240", "\241", "\242", "\243", "\244", "\245", "\246", "\247",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 "\250", "\251", "\252", "\253", "\254", "\255", "\256", "\257",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 "\260", "\261", "\262", "\263", "\264", "\265", "\266", "\267",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 "\270", "\271", "\272", "\273", "\274", "\275", "\276", "\277",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 "\300", "\301", "\302", "\303", "\304", "\305", "\306", "\307",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 "\310", "\311", "\312", "\313", "\314", "\315", "\316", "\317",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 "\320", "\321", "\322", "\323", "\324", "\325", "\326", "\327",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116 "\330", "\331", "\332", "\333", "\334", "\335", "\336", "\337",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117 "\340", "\341", "\342", "\343", "\344", "\345", "\346", "\347",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
118 "\350", "\351", "\352", "\353", "\354", "\355", "\356", "\357",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 "\360", "\361", "\362", "\363", "\364", "\365", "\366", "\367",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 "\370", "\371", "\372", "\373", "\374", "\375", "\376", "\377",
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
121 });
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
122 }
315c0d987fd2 runtime(java): Improve the recognition of literals (#14120)
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
123 }