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

Side by Side Diff: packages/charcode/lib/html_entity.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/lib/charcode.dart ('k') | packages/charcode/pubspec.yaml » ('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 * 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
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;
OLDNEW
« no previous file with comments | « packages/charcode/lib/charcode.dart ('k') | packages/charcode/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698