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 * Character codes based on HTML 4.01 character entity names. | 6 * Character codes based on HTML 4.01 character entity names. |
7 * | 7 * |
8 * For each entity name, e.g., `nbsp`, | 8 * For each entity name, e.g., `nbsp`, |
9 * a constant with that name prefixed by `$` is defined | 9 * a constant with that name prefixed by `$` is defined |
10 * for that entity's code point. | 10 * for that entity's code point. |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 /// lozenge ('◊') | 514 /// lozenge ('◊') |
515 const int $loz = 0x25CA; | 515 const int $loz = 0x25CA; |
516 /// black spade suit ('♠') | 516 /// black spade suit ('♠') |
517 const int $spades = 0x2660; | 517 const int $spades = 0x2660; |
518 /// black club suit (shamrock) ('♣') | 518 /// black club suit (shamrock) ('♣') |
519 const int $clubs = 0x2663; | 519 const int $clubs = 0x2663; |
520 /// black heart suit (valentine) ('♥') | 520 /// black heart suit (valentine) ('♥') |
521 const int $hearts = 0x2665; | 521 const int $hearts = 0x2665; |
522 /// black diamond suit ('♦') | 522 /// black diamond suit ('♦') |
523 const int $diams = 0x2666; | 523 const int $diams = 0x2666; |
OLD | NEW |