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

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

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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/README.md ('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 /**
6 * Declare integer constants for each ASCII character. 6 * Declare integer constants for each ASCII character.
7 * 7 *
8 * The constants all start with "$" to avoid conflicting with other constants. 8 * The constants all start with "$" to avoid conflicting with other constants.
9 * 9 *
10 * For characters that are valid in an identifier, the character iteself 10 * For characters that are valid in an identifier, the character iteself
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 /// Character '|'. 345 /// Character '|'.
346 const int $pipe = 0x7C; 346 const int $pipe = 0x7C;
347 /// Character '|'. 347 /// Character '|'.
348 const int $bar = 0x7C; 348 const int $bar = 0x7C;
349 /// Character '}'. 349 /// Character '}'.
350 const int $rbrace = 0x7D; 350 const int $rbrace = 0x7D;
351 /// Character '}'. 351 /// Character '}'.
352 const int $close_brace = 0x7D; 352 const int $close_brace = 0x7D;
353 /// Character '~'. 353 /// Character '~'.
354 const int $tilde = 0x7E; 354 const int $tilde = 0x7E;
OLDNEW
« no previous file with comments | « packages/charcode/README.md ('k') | packages/charcode/lib/charcode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698