Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: packages/charcode/lib/ascii.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « packages/charcode/codereview.settings ('k') | packages/charcode/lib/charcode.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source is governed by a 2 // for details. All rights reserved. Use of this source is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /// Declare integer constants for each ASCII character.
6 * Declare integer constants for each ASCII character. 6 ///
7 * 7 /// The constants all start with "$" to avoid conflicting with other constants.
8 * The constants all start with "$" to avoid conflicting with other constants. 8 ///
9 * 9 /// For characters that are valid in an identifier, the character itself
10 * For characters that are valid in an identifier, the character iteself 10 /// follows the "$". For other characters, a symbolic name is used.
11 * follows the "$". For other characters, a symbolic name is used. 11 /// In some cases, multiple alternative symbolic names are provided.
12 * In some cases, multiple alternative symbolic names are provided. 12 /// Please stick to using one name per character in your code.
13 * Please stick to using one name per character in your code. 13 ///
14 * 14 /// The symbolic names are, where applicable, the name of the symbol without
15 * The symbolic names are, where applicable, the name of the symbol without 15 /// any "mark", "symbol" "sign" or "accent" suffix.
16 * any "mark", "symbol" "sign" or "accent" suffix. 16 /// Examples: [$exclamation], [$pipe], [$dollar] and [$grave].
17 * Examples: [$exclamation], [$pipe], [$dollar] and [$grave]. 17 /// For less common symbols, a selection of common names are used.
18 * For less common symbols, a selection of common names are used. 18 ///
19 * 19 /// For parenthetical markers, there is both a short name, [$lparen]/[$rparen],
20 * For parenthetical markers, there is both a short name, [$lparen]/[$rparen], 20 /// and a long name, [$open_paren]/ [$close_paren].
21 * and a long name, [$open_paren]/ [$close_paren]. 21 ///
22 * 22 /// For common HTML entities, the entity names are also usable as symbolic
23 * For common HTML entities, the entity names are also useable as symbolic 23 /// names: [$apos], [$quot], [$lt], [$gt], and [$amp].
24 * names: [$apos], [$quot], [$lt], [$gt], and [$amp].
25 */
26 library charcode.ascii.dollar_lowercase; 24 library charcode.ascii.dollar_lowercase;
27 25
28 // Control characters. 26 // Control characters.
29 27
30 /// "Null character" control character. 28 /// "Null character" control character.
31 const int $nul = 0x00; 29 const int $nul = 0x00;
30
32 /// "Start of Header" control character. 31 /// "Start of Header" control character.
33 const int $soh = 0x01; 32 const int $soh = 0x01;
33
34 /// "Start of Text" control character. 34 /// "Start of Text" control character.
35 const int $stx = 0x02; 35 const int $stx = 0x02;
36
36 /// "End of Text" control character. 37 /// "End of Text" control character.
37 const int $etx = 0x03; 38 const int $etx = 0x03;
39
38 /// "End of Transmission" control character. 40 /// "End of Transmission" control character.
39 const int $eot = 0x04; 41 const int $eot = 0x04;
42
40 /// "Enquiry" control character. 43 /// "Enquiry" control character.
41 const int $enq = 0x05; 44 const int $enq = 0x05;
45
42 /// "Acknowledgment" control character. 46 /// "Acknowledgment" control character.
43 const int $ack = 0x06; 47 const int $ack = 0x06;
48
44 /// "Bell" control character. 49 /// "Bell" control character.
45 const int $bel = 0x07; 50 const int $bel = 0x07;
51
46 /// "Backspace" control character. 52 /// "Backspace" control character.
47 const int $bs = 0x08; 53 const int $bs = 0x08;
54
48 /// "Horizontal Tab" control character. 55 /// "Horizontal Tab" control character.
49 const int $ht = 0x09; 56 const int $ht = 0x09;
57
50 /// "Horizontal Tab" control character, common name. 58 /// "Horizontal Tab" control character, common name.
51 const int $tab = 0x09; 59 const int $tab = 0x09;
60
52 /// "Line feed" control character. 61 /// "Line feed" control character.
53 const int $lf = 0x0A; 62 const int $lf = 0x0A;
63
54 /// "Vertical Tab" control character. 64 /// "Vertical Tab" control character.
55 const int $vt = 0x0B; 65 const int $vt = 0x0B;
66
56 /// "Form feed" control character. 67 /// "Form feed" control character.
57 const int $ff = 0x0C; 68 const int $ff = 0x0C;
69
58 /// "Carriage return" control character. 70 /// "Carriage return" control character.
59 const int $cr = 0x0D; 71 const int $cr = 0x0D;
72
60 /// "Shift Out" control character. 73 /// "Shift Out" control character.
61 const int $so = 0x0E; 74 const int $so = 0x0E;
75
62 /// "Shift In" control character. 76 /// "Shift In" control character.
63 const int $si = 0x0F; 77 const int $si = 0x0F;
78
64 /// "Data Link Escape" control character. 79 /// "Data Link Escape" control character.
65 const int $dle = 0x10; 80 const int $dle = 0x10;
81
66 /// "Device Control 1" control character (oft. XON). 82 /// "Device Control 1" control character (oft. XON).
67 const int $dc1 = 0x11; 83 const int $dc1 = 0x11;
84
68 /// "Device Control 2" control character. 85 /// "Device Control 2" control character.
69 const int $dc2 = 0x12; 86 const int $dc2 = 0x12;
87
70 /// "Device Control 3" control character (oft. XOFF). 88 /// "Device Control 3" control character (oft. XOFF).
71 const int $dc3 = 0x13; 89 const int $dc3 = 0x13;
90
72 /// "Device Control 4" control character. 91 /// "Device Control 4" control character.
73 const int $dc4 = 0x14; 92 const int $dc4 = 0x14;
93
74 /// "Negative Acknowledgment" control character. 94 /// "Negative Acknowledgment" control character.
75 const int $nak = 0x15; 95 const int $nak = 0x15;
96
76 /// "Synchronous idle" control character. 97 /// "Synchronous idle" control character.
77 const int $syn = 0x16; 98 const int $syn = 0x16;
99
78 /// "End of Transmission Block" control character. 100 /// "End of Transmission Block" control character.
79 const int $etb = 0x17; 101 const int $etb = 0x17;
102
80 /// "Cancel" control character. 103 /// "Cancel" control character.
81 const int $can = 0x18; 104 const int $can = 0x18;
105
82 /// "End of Medium" control character. 106 /// "End of Medium" control character.
83 const int $em = 0x19; 107 const int $em = 0x19;
108
84 /// "Substitute" control character. 109 /// "Substitute" control character.
85 const int $sub = 0x1A; 110 const int $sub = 0x1A;
111
86 /// "Escape" control character. 112 /// "Escape" control character.
87 const int $esc = 0x1B; 113 const int $esc = 0x1B;
114
88 /// "File Separator" control character. 115 /// "File Separator" control character.
89 const int $fs = 0x1C; 116 const int $fs = 0x1C;
117
90 /// "Group Separator" control character. 118 /// "Group Separator" control character.
91 const int $gs = 0x1D; 119 const int $gs = 0x1D;
120
92 /// "Record Separator" control character. 121 /// "Record Separator" control character.
93 const int $rs = 0x1E; 122 const int $rs = 0x1E;
123
94 /// "Unit Separator" control character. 124 /// "Unit Separator" control character.
95 const int $us = 0x1F; 125 const int $us = 0x1F;
126
96 /// "Delete" control character. 127 /// "Delete" control character.
97 const int $del = 0x7F; 128 const int $del = 0x7F;
98 129
99 // Visible characters. 130 // Visible characters.
100 131
101 /// Space character. 132 /// Space character.
102 const int $space = 0x20; 133 const int $space = 0x20;
134
103 /// Character '!'. 135 /// Character '!'.
104 const int $exclamation = 0x21; 136 const int $exclamation = 0x21;
137
105 /// Character '"', short name. 138 /// Character '"', short name.
106 const int $quot = 0x22; 139 const int $quot = 0x22;
140
107 /// Character '"'. 141 /// Character '"'.
108 const int $quote = 0x22; 142 const int $quote = 0x22;
143
109 /// Character '"'. 144 /// Character '"'.
110 const int $double_quote = 0x22; 145 const int $double_quote = 0x22;
146
111 /// Character '"'. 147 /// Character '"'.
112 const int $quotation = 0x22; 148 const int $quotation = 0x22;
149
113 /// Character '#'. 150 /// Character '#'.
114 const int $hash = 0x23; 151 const int $hash = 0x23;
152
115 /// Character '$'. 153 /// Character '$'.
116 const int $$ = 0x24; 154 const int $$ = 0x24;
155
117 /// Character '$'. 156 /// Character '$'.
118 const int $dollar = 0x24; 157 const int $dollar = 0x24;
158
119 /// Character '%'. 159 /// Character '%'.
120 const int $percent = 0x25; 160 const int $percent = 0x25;
161
121 /// Character '&', short name. 162 /// Character '&', short name.
122 const int $amp = 0x26; 163 const int $amp = 0x26;
164
123 /// Character '&'. 165 /// Character '&'.
124 const int $ampersand = 0x26; 166 const int $ampersand = 0x26;
167
125 /// Character "'". 168 /// Character "'".
126 const int $apos = 0x27; 169 const int $apos = 0x27;
170
127 /// Character '''. 171 /// Character '''.
128 const int $apostrophe = 0x27; 172 const int $apostrophe = 0x27;
173
129 /// Character '''. 174 /// Character '''.
130 const int $single_quote = 0x27; 175 const int $single_quote = 0x27;
176
131 /// Character '('. 177 /// Character '('.
132 const int $lparen = 0x28; 178 const int $lparen = 0x28;
179
133 /// Character '('. 180 /// Character '('.
134 const int $open_paren = 0x28; 181 const int $open_paren = 0x28;
182
135 /// Character '('. 183 /// Character '('.
136 const int $open_parenthesis = 0x28; 184 const int $open_parenthesis = 0x28;
185
137 /// Character ')'. 186 /// Character ')'.
138 const int $rparen = 0x29; 187 const int $rparen = 0x29;
188
139 /// Character ')'. 189 /// Character ')'.
140 const int $close_paren = 0x29; 190 const int $close_paren = 0x29;
191
141 /// Character ')'. 192 /// Character ')'.
142 const int $close_parenthesis = 0x29; 193 const int $close_parenthesis = 0x29;
194
143 /// Character '*'. 195 /// Character '*'.
144 const int $asterisk = 0x2A; 196 const int $asterisk = 0x2A;
197
145 /// Character '+'. 198 /// Character '+'.
146 const int $plus = 0x2B; 199 const int $plus = 0x2B;
200
147 /// Character ','. 201 /// Character ','.
148 const int $comma = 0x2C; 202 const int $comma = 0x2C;
203
149 /// Character '-'. 204 /// Character '-'.
150 const int $minus = 0x2D; 205 const int $minus = 0x2D;
206
151 /// Character '-'. 207 /// Character '-'.
152 const int $dash = 0x2D; 208 const int $dash = 0x2D;
209
153 /// Character '.'. 210 /// Character '.'.
154 const int $dot = 0x2E; 211 const int $dot = 0x2E;
212
155 /// Character '.'. 213 /// Character '.'.
156 const int $fullstop = 0x2E; 214 const int $fullstop = 0x2E;
215
157 /// Character '/'. 216 /// Character '/'.
158 const int $slash = 0x2F; 217 const int $slash = 0x2F;
218
159 /// Character '/'. 219 /// Character '/'.
160 const int $solidus = 0x2F; 220 const int $solidus = 0x2F;
221
161 /// Character '/'. 222 /// Character '/'.
162 const int $division = 0x2F; 223 const int $division = 0x2F;
224
163 /// Character '0'. 225 /// Character '0'.
164 const int $0 = 0x30; 226 const int $0 = 0x30;
227
165 /// Character '1'. 228 /// Character '1'.
166 const int $1 = 0x31; 229 const int $1 = 0x31;
230
167 /// Character '2'. 231 /// Character '2'.
168 const int $2 = 0x32; 232 const int $2 = 0x32;
233
169 /// Character '3'. 234 /// Character '3'.
170 const int $3 = 0x33; 235 const int $3 = 0x33;
236
171 /// Character '4'. 237 /// Character '4'.
172 const int $4 = 0x34; 238 const int $4 = 0x34;
239
173 /// Character '5'. 240 /// Character '5'.
174 const int $5 = 0x35; 241 const int $5 = 0x35;
242
175 /// Character '6'. 243 /// Character '6'.
176 const int $6 = 0x36; 244 const int $6 = 0x36;
245
177 /// Character '7'. 246 /// Character '7'.
178 const int $7 = 0x37; 247 const int $7 = 0x37;
248
179 /// Character '8'. 249 /// Character '8'.
180 const int $8 = 0x38; 250 const int $8 = 0x38;
251
181 /// Character '9'. 252 /// Character '9'.
182 const int $9 = 0x39; 253 const int $9 = 0x39;
254
183 /// Character ':'. 255 /// Character ':'.
184 const int $colon = 0x3A; 256 const int $colon = 0x3A;
257
185 /// Character ';'. 258 /// Character ';'.
186 const int $semicolon = 0x3B; 259 const int $semicolon = 0x3B;
260
187 /// Character '<'. 261 /// Character '<'.
188 const int $lt = 0x3C; 262 const int $lt = 0x3C;
263
189 /// Character '<'. 264 /// Character '<'.
190 const int $less_than = 0x3C; 265 const int $less_than = 0x3C;
266
191 /// Character '<'. 267 /// Character '<'.
192 const int $langle = 0x3C; 268 const int $langle = 0x3C;
269
193 /// Character '<'. 270 /// Character '<'.
194 const int $open_angle = 0x3C; 271 const int $open_angle = 0x3C;
272
195 /// Character '='. 273 /// Character '='.
196 const int $equal = 0x3D; 274 const int $equal = 0x3D;
275
197 /// Character '>'. 276 /// Character '>'.
198 const int $gt = 0x3E; 277 const int $gt = 0x3E;
278
199 /// Character '>'. 279 /// Character '>'.
200 const int $greater_than = 0x3E; 280 const int $greater_than = 0x3E;
281
201 /// Character '>'. 282 /// Character '>'.
202 const int $rangle = 0x3E; 283 const int $rangle = 0x3E;
284
203 /// Character '>'. 285 /// Character '>'.
204 const int $close_angle = 0x3E; 286 const int $close_angle = 0x3E;
287
205 /// Character '?'. 288 /// Character '?'.
206 const int $question = 0x3F; 289 const int $question = 0x3F;
207 290
208 /// Character '@'. 291 /// Character '@'.
209 const int $at = 0x40; 292 const int $at = 0x40;
293
210 /// Character 'A'. 294 /// Character 'A'.
211 const int $A = 0x41; 295 const int $A = 0x41;
296
212 /// Character 'B'. 297 /// Character 'B'.
213 const int $B = 0x42; 298 const int $B = 0x42;
299
214 /// Character 'C'. 300 /// Character 'C'.
215 const int $C = 0x43; 301 const int $C = 0x43;
302
216 /// Character 'D'. 303 /// Character 'D'.
217 const int $D = 0x44; 304 const int $D = 0x44;
305
218 /// Character 'E'. 306 /// Character 'E'.
219 const int $E = 0x45; 307 const int $E = 0x45;
308
220 /// Character 'F'. 309 /// Character 'F'.
221 const int $F = 0x46; 310 const int $F = 0x46;
311
222 /// Character 'G'. 312 /// Character 'G'.
223 const int $G = 0x47; 313 const int $G = 0x47;
314
224 /// Character 'H'. 315 /// Character 'H'.
225 const int $H = 0x48; 316 const int $H = 0x48;
317
226 /// Character 'I'. 318 /// Character 'I'.
227 const int $I = 0x49; 319 const int $I = 0x49;
320
228 /// Character 'J'. 321 /// Character 'J'.
229 const int $J = 0x4A; 322 const int $J = 0x4A;
323
230 /// Character 'K'. 324 /// Character 'K'.
231 const int $K = 0x4B; 325 const int $K = 0x4B;
326
232 /// Character 'L'. 327 /// Character 'L'.
233 const int $L = 0x4C; 328 const int $L = 0x4C;
329
234 /// Character 'M'. 330 /// Character 'M'.
235 const int $M = 0x4D; 331 const int $M = 0x4D;
332
236 /// Character 'N'. 333 /// Character 'N'.
237 const int $N = 0x4E; 334 const int $N = 0x4E;
335
238 /// Character 'O'. 336 /// Character 'O'.
239 const int $O = 0x4F; 337 const int $O = 0x4F;
338
240 /// Character 'P'. 339 /// Character 'P'.
241 const int $P = 0x50; 340 const int $P = 0x50;
341
242 /// Character 'Q'. 342 /// Character 'Q'.
243 const int $Q = 0x51; 343 const int $Q = 0x51;
344
244 /// Character 'R'. 345 /// Character 'R'.
245 const int $R = 0x52; 346 const int $R = 0x52;
347
246 /// Character 'S'. 348 /// Character 'S'.
247 const int $S = 0x53; 349 const int $S = 0x53;
350
248 /// Character 'T'. 351 /// Character 'T'.
249 const int $T = 0x54; 352 const int $T = 0x54;
353
250 /// Character 'U'. 354 /// Character 'U'.
251 const int $U = 0x55; 355 const int $U = 0x55;
356
252 /// Character 'V'. 357 /// Character 'V'.
253 const int $V = 0x56; 358 const int $V = 0x56;
359
254 /// Character 'W'. 360 /// Character 'W'.
255 const int $W = 0x57; 361 const int $W = 0x57;
362
256 /// Character 'X'. 363 /// Character 'X'.
257 const int $X = 0x58; 364 const int $X = 0x58;
365
258 /// Character 'Y'. 366 /// Character 'Y'.
259 const int $Y = 0x59; 367 const int $Y = 0x59;
368
260 /// Character 'Z'. 369 /// Character 'Z'.
261 const int $Z = 0x5A; 370 const int $Z = 0x5A;
371
262 /// Character '['. 372 /// Character '['.
263 const int $lbracket = 0x5B; 373 const int $lbracket = 0x5B;
374
264 /// Character '['. 375 /// Character '['.
265 const int $open_bracket = 0x5B; 376 const int $open_bracket = 0x5B;
377
266 /// Character '\'. 378 /// Character '\'.
267 const int $backslash = 0x5C; 379 const int $backslash = 0x5C;
380
268 /// Character ']'. 381 /// Character ']'.
269 const int $rbracket = 0x5D; 382 const int $rbracket = 0x5D;
383
270 /// Character ']'. 384 /// Character ']'.
271 const int $close_bracket = 0x5D; 385 const int $close_bracket = 0x5D;
386
272 /// Character '^'. 387 /// Character '^'.
273 const int $circumflex = 0x5E; 388 const int $circumflex = 0x5E;
389
274 /// Character '^'. 390 /// Character '^'.
275 const int $caret = 0x5E; 391 const int $caret = 0x5E;
392
276 /// Character '^'. 393 /// Character '^'.
277 const int $hat = 0x5E; 394 const int $hat = 0x5E;
395
278 /// Character '_'. 396 /// Character '_'.
279 const int $_ = 0x5F; 397 const int $_ = 0x5F;
398
280 /// Character '_'. 399 /// Character '_'.
281 const int $underscore = 0x5F; 400 const int $underscore = 0x5F;
401
282 /// Character '_'. 402 /// Character '_'.
283 const int $underline = 0x5F; 403 const int $underline = 0x5F;
284 404
285 /// Character '`'. 405 /// Character '`'.
286 const int $backquote = 0x60; 406 const int $backquote = 0x60;
407
287 /// Character '`'. 408 /// Character '`'.
288 const int $grave = 0x60; 409 const int $grave = 0x60;
410
289 /// Character 'a'. 411 /// Character 'a'.
290 const int $a = 0x61; 412 const int $a = 0x61;
413
291 /// Character 'b'. 414 /// Character 'b'.
292 const int $b = 0x62; 415 const int $b = 0x62;
416
293 /// Character 'c'. 417 /// Character 'c'.
294 const int $c = 0x63; 418 const int $c = 0x63;
419
295 /// Character 'd'. 420 /// Character 'd'.
296 const int $d = 0x64; 421 const int $d = 0x64;
422
297 /// Character 'e'. 423 /// Character 'e'.
298 const int $e = 0x65; 424 const int $e = 0x65;
425
299 /// Character 'f'. 426 /// Character 'f'.
300 const int $f = 0x66; 427 const int $f = 0x66;
428
301 /// Character 'g'. 429 /// Character 'g'.
302 const int $g = 0x67; 430 const int $g = 0x67;
431
303 /// Character 'h'. 432 /// Character 'h'.
304 const int $h = 0x68; 433 const int $h = 0x68;
434
305 /// Character 'i'. 435 /// Character 'i'.
306 const int $i = 0x69; 436 const int $i = 0x69;
437
307 /// Character 'j'. 438 /// Character 'j'.
308 const int $j = 0x6A; 439 const int $j = 0x6A;
440
309 /// Character 'k'. 441 /// Character 'k'.
310 const int $k = 0x6B; 442 const int $k = 0x6B;
443
311 /// Character 'l'. 444 /// Character 'l'.
312 const int $l = 0x6C; 445 const int $l = 0x6C;
446
313 /// Character 'm'. 447 /// Character 'm'.
314 const int $m = 0x6D; 448 const int $m = 0x6D;
449
315 /// Character 'n'. 450 /// Character 'n'.
316 const int $n = 0x6E; 451 const int $n = 0x6E;
452
317 /// Character 'o'. 453 /// Character 'o'.
318 const int $o = 0x6F; 454 const int $o = 0x6F;
455
319 /// Character 'p'. 456 /// Character 'p'.
320 const int $p = 0x70; 457 const int $p = 0x70;
458
321 /// Character 'q'. 459 /// Character 'q'.
322 const int $q = 0x71; 460 const int $q = 0x71;
461
323 /// Character 'r'. 462 /// Character 'r'.
324 const int $r = 0x72; 463 const int $r = 0x72;
464
325 /// Character 's'. 465 /// Character 's'.
326 const int $s = 0x73; 466 const int $s = 0x73;
467
327 /// Character 't'. 468 /// Character 't'.
328 const int $t = 0x74; 469 const int $t = 0x74;
470
329 /// Character 'u'. 471 /// Character 'u'.
330 const int $u = 0x75; 472 const int $u = 0x75;
473
331 /// Character 'v'. 474 /// Character 'v'.
332 const int $v = 0x76; 475 const int $v = 0x76;
476
333 /// Character 'w'. 477 /// Character 'w'.
334 const int $w = 0x77; 478 const int $w = 0x77;
479
335 /// Character 'x'. 480 /// Character 'x'.
336 const int $x = 0x78; 481 const int $x = 0x78;
482
337 /// Character 'y'. 483 /// Character 'y'.
338 const int $y = 0x79; 484 const int $y = 0x79;
485
339 /// Character 'z'. 486 /// Character 'z'.
340 const int $z = 0x7A; 487 const int $z = 0x7A;
488
341 /// Character '{'. 489 /// Character '{'.
342 const int $lbrace = 0x7B; 490 const int $lbrace = 0x7B;
491
343 /// Character '{'. 492 /// Character '{'.
344 const int $open_brace = 0x7B; 493 const int $open_brace = 0x7B;
494
345 /// Character '|'. 495 /// Character '|'.
346 const int $pipe = 0x7C; 496 const int $pipe = 0x7C;
497
347 /// Character '|'. 498 /// Character '|'.
348 const int $bar = 0x7C; 499 const int $bar = 0x7C;
500
349 /// Character '}'. 501 /// Character '}'.
350 const int $rbrace = 0x7D; 502 const int $rbrace = 0x7D;
503
351 /// Character '}'. 504 /// Character '}'.
352 const int $close_brace = 0x7D; 505 const int $close_brace = 0x7D;
506
353 /// Character '~'. 507 /// Character '~'.
354 const int $tilde = 0x7E; 508 const int $tilde = 0x7E;
OLDNEW
« no previous file with comments | « packages/charcode/codereview.settings ('k') | packages/charcode/lib/charcode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698