OLD | NEW |
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 Loading... |
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; |
OLD | NEW |