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

Side by Side Diff: dart/sdk/lib/core/uri.dart

Issue 366873005: Version 1.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.5/
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code 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 part of dart.core; 5 part of dart.core;
6 6
7 /** 7 /**
8 * A parsed URI, such as a URL. 8 * A parsed URI, such as a URL.
9 * 9 *
10 * **See also:** 10 * **See also:**
(...skipping 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 // pqrstuvwxyz ~ 1706 // pqrstuvwxyz ~
1707 0x47ff]; // 0x70 - 0x7f 1111111111100010 1707 0x47ff]; // 0x70 - 0x7f 1111111111100010
1708 1708
1709 // Table of reserved characters specified by ECMAScript 5. 1709 // Table of reserved characters specified by ECMAScript 5.
1710 static const _encodeFullTable = const [ 1710 static const _encodeFullTable = const [
1711 // LSB MSB 1711 // LSB MSB
1712 // | | 1712 // | |
1713 0x0000, // 0x00 - 0x0f 0000000000000000 1713 0x0000, // 0x00 - 0x0f 0000000000000000
1714 0x0000, // 0x10 - 0x1f 0000000000000000 1714 0x0000, // 0x10 - 0x1f 0000000000000000
1715 // ! #$ &'()*+,-./ 1715 // ! #$ &'()*+,-./
1716 0xf7da, // 0x20 - 0x2f 0101101111101111 1716 0xffda, // 0x20 - 0x2f 0101101111111111
1717 // 0123456789:; = ? 1717 // 0123456789:; = ?
1718 0xafff, // 0x30 - 0x3f 1111111111110101 1718 0xafff, // 0x30 - 0x3f 1111111111110101
1719 // @ABCDEFGHIJKLMNO 1719 // @ABCDEFGHIJKLMNO
1720 0xffff, // 0x40 - 0x4f 1111111111111111 1720 0xffff, // 0x40 - 0x4f 1111111111111111
1721 // PQRSTUVWXYZ _ 1721 // PQRSTUVWXYZ _
1722 0x87ff, // 0x50 - 0x5f 1111111111100001 1722 0x87ff, // 0x50 - 0x5f 1111111111100001
1723 // abcdefghijklmno 1723 // abcdefghijklmno
1724 0xfffe, // 0x60 - 0x6f 0111111111111111 1724 0xfffe, // 0x60 - 0x6f 0111111111111111
1725 // pqrstuvwxyz ~ 1725 // pqrstuvwxyz ~
1726 0x47ff]; // 0x70 - 0x7f 1111111111100010 1726 0x47ff]; // 0x70 - 0x7f 1111111111100010
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1842 0xafff, // 0x30 - 0x3f 1111111111110101 1842 0xafff, // 0x30 - 0x3f 1111111111110101
1843 // @ABCDEFGHIJKLMNO 1843 // @ABCDEFGHIJKLMNO
1844 0xffff, // 0x40 - 0x4f 1111111111111111 1844 0xffff, // 0x40 - 0x4f 1111111111111111
1845 // PQRSTUVWXYZ _ 1845 // PQRSTUVWXYZ _
1846 0x87ff, // 0x50 - 0x5f 1111111111100001 1846 0x87ff, // 0x50 - 0x5f 1111111111100001
1847 // abcdefghijklmno 1847 // abcdefghijklmno
1848 0xfffe, // 0x60 - 0x6f 0111111111111111 1848 0xfffe, // 0x60 - 0x6f 0111111111111111
1849 // pqrstuvwxyz ~ 1849 // pqrstuvwxyz ~
1850 0x47ff]; // 0x70 - 0x7f 1111111111100010 1850 0x47ff]; // 0x70 - 0x7f 1111111111100010
1851 } 1851 }
OLDNEW
« no previous file with comments | « dart/samples/third_party/todomvc/pubspec.yaml ('k') | dart/sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698