OLD | NEW |
1 part of dart.core; | 1 part of dart.core; |
2 class Uri {final String _host; | 2 class Uri {final String _host; |
3 num _port; | 3 num _port; |
4 String _path; | 4 String _path; |
5 final String scheme; | 5 final String scheme; |
6 String get authority { | 6 String get authority { |
7 if (!hasAuthority) return ""; | 7 if (!hasAuthority) return ""; |
8 var sb = new StringBuffer(); | 8 var sb = new StringBuffer(); |
9 _writeAuthority(sb); | 9 _writeAuthority(sb); |
10 return sb.toString(); | 10 return sb.toString(); |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 } | 267 } |
268 } | 268 } |
269 host = authority.substring(hostStart, hostEnd); | 269 host = authority.substring(hostStart, hostEnd); |
270 } | 270 } |
271 return new Uri(scheme: scheme, userInfo: userInfo, host: DEVC$RT.cast(host, d
ynamic, String, "DynamicCast", """line 609, column 26 of dart:core/uri.dart: """
, host is String, true), port: DEVC$RT.cast(port, dynamic, int, "DynamicCast", "
""line 610, column 26 of dart:core/uri.dart: """, port is int, true), pathSegmen
ts: unencodedPath.split("/"), queryParameters: queryParameters); | 271 return new Uri(scheme: scheme, userInfo: userInfo, host: DEVC$RT.cast(host, d
ynamic, String, "DynamicCast", """line 609, column 26 of dart:core/uri.dart: """
, host is String, true), port: DEVC$RT.cast(port, dynamic, int, "DynamicCast", "
""line 610, column 26 of dart:core/uri.dart: """, port is int, true), pathSegmen
ts: unencodedPath.split("/"), queryParameters: queryParameters); |
272 } | 272 } |
273 factory Uri.file(String path, { | 273 factory Uri.file(String path, { |
274 bool windows} | 274 bool windows} |
275 ) { | 275 ) { |
276 windows = windows == null ? Uri._isWindows : windows; | 276 windows = windows == null ? Uri._isWindows : windows; |
277 return ((__x10) => DEVC$RT.cast(__x10, dynamic, Uri, "DynamicCast", """line 6
98, column 12 of dart:core/uri.dart: """, __x10 is Uri, true))(windows ? _makeWi
ndowsFileUrl(path) : _makeFileUri(path)); | 277 return ((__x21) => DEVC$RT.cast(__x21, dynamic, Uri, "DynamicCast", """line 6
98, column 12 of dart:core/uri.dart: """, __x21 is Uri, true))(windows ? _makeWi
ndowsFileUrl(path) : _makeFileUri(path)); |
278 } | 278 } |
279 external static Uri get base; | 279 external static Uri get base; |
280 external static bool get _isWindows; | 280 external static bool get _isWindows; |
281 static _checkNonWindowsPathReservedCharacters(List<String> segments, bool argum
entError) { | 281 static _checkNonWindowsPathReservedCharacters(List<String> segments, bool argum
entError) { |
282 segments.forEach((segment) { | 282 segments.forEach((segment) { |
283 if (segment.contains("/")) { | 283 if (segment.contains("/")) { |
284 if (argumentError) { | 284 if (argumentError) { |
285 throw new ArgumentError("Illegal path character $segment"); | 285 throw new ArgumentError("Illegal path character $segment"); |
286 } | 286 } |
287 else { | 287 else { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 if (userInfo != null) { | 384 if (userInfo != null) { |
385 userInfo = _makeUserInfo(userInfo, 0, userInfo.length); | 385 userInfo = _makeUserInfo(userInfo, 0, userInfo.length); |
386 } | 386 } |
387 else { | 387 else { |
388 userInfo = this.userInfo; | 388 userInfo = this.userInfo; |
389 } | 389 } |
390 if (port != null) { | 390 if (port != null) { |
391 port = _makePort(port, scheme); | 391 port = _makePort(port, scheme); |
392 } | 392 } |
393 else { | 393 else { |
394 port = ((__x11) => DEVC$RT.cast(__x11, num, int, "ImplicitCast", """line 889
, column 14 of dart:core/uri.dart: """, __x11 is int, true))(this._port); | 394 port = ((__x22) => DEVC$RT.cast(__x22, num, int, "ImplicitCast", """line 889
, column 14 of dart:core/uri.dart: """, __x22 is int, true))(this._port); |
395 if (schemeChanged) { | 395 if (schemeChanged) { |
396 port = _makePort(port, scheme); | 396 port = _makePort(port, scheme); |
397 } | 397 } |
398 } | 398 } |
399 if (host != null) { | 399 if (host != null) { |
400 host = _makeHost(host, 0, host.length, false); | 400 host = _makeHost(host, 0, host.length, false); |
401 } | 401 } |
402 else if (this.hasAuthority) { | 402 else if (this.hasAuthority) { |
403 host = this.host; | 403 host = this.host; |
404 } | 404 } |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 } | 663 } |
664 static bool _isUnreservedChar(int ch) { | 664 static bool _isUnreservedChar(int ch) { |
665 return ch < 127 && ((_unreservedTable[ch >> 4] & (1 << (ch & 0x0f))) != 0); | 665 return ch < 127 && ((_unreservedTable[ch >> 4] & (1 << (ch & 0x0f))) != 0); |
666 } | 666 } |
667 static String _escapeChar(char) { | 667 static String _escapeChar(char) { |
668 assert (char <= 0x10ffff); const hexDigits = "0123456789ABCDEF"; | 668 assert (char <= 0x10ffff); const hexDigits = "0123456789ABCDEF"; |
669 List codeUnits; | 669 List codeUnits; |
670 if (char < 0x80) { | 670 if (char < 0x80) { |
671 codeUnits = new List(3); | 671 codeUnits = new List(3); |
672 codeUnits[0] = _PERCENT; | 672 codeUnits[0] = _PERCENT; |
673 codeUnits[1] = hexDigits.codeUnitAt(((__x12) => DEVC$RT.cast(__x12, dynamic
, int, "DynamicCast", """line 1248, column 43 of dart:core/uri.dart: """, __x12
is int, true))(char >> 4)); | 673 codeUnits[1] = hexDigits.codeUnitAt(((__x23) => DEVC$RT.cast(__x23, dynamic
, int, "DynamicCast", """line 1248, column 43 of dart:core/uri.dart: """, __x23
is int, true))(char >> 4)); |
674 codeUnits[2] = hexDigits.codeUnitAt(((__x13) => DEVC$RT.cast(__x13, dynamic
, int, "DynamicCast", """line 1249, column 43 of dart:core/uri.dart: """, __x13
is int, true))(char & 0xf)); | 674 codeUnits[2] = hexDigits.codeUnitAt(((__x24) => DEVC$RT.cast(__x24, dynamic
, int, "DynamicCast", """line 1249, column 43 of dart:core/uri.dart: """, __x24
is int, true))(char & 0xf)); |
675 } | 675 } |
676 else { | 676 else { |
677 int flag = 0xc0; | 677 int flag = 0xc0; |
678 int encodedBytes = 2; | 678 int encodedBytes = 2; |
679 if (char > 0x7ff) { | 679 if (char > 0x7ff) { |
680 flag = 0xe0; | 680 flag = 0xe0; |
681 encodedBytes = 3; | 681 encodedBytes = 3; |
682 if (char > 0xffff) { | 682 if (char > 0xffff) { |
683 encodedBytes = 4; | 683 encodedBytes = 4; |
684 flag = 0xf0; | 684 flag = 0xf0; |
685 } | 685 } |
686 } | 686 } |
687 codeUnits = new List(3 * encodedBytes); | 687 codeUnits = new List(3 * encodedBytes); |
688 int index = 0; | 688 int index = 0; |
689 while (--encodedBytes >= 0) { | 689 while (--encodedBytes >= 0) { |
690 int byte = ((__x14) => DEVC$RT.cast(__x14, dynamic, int, "DynamicCast", ""
"line 1265, column 20 of dart:core/uri.dart: """, __x14 is int, true))(((char >>
(6 * encodedBytes)) & 0x3f) | flag); | 690 int byte = ((__x25) => DEVC$RT.cast(__x25, dynamic, int, "DynamicCast", ""
"line 1265, column 20 of dart:core/uri.dart: """, __x25 is int, true))(((char >>
(6 * encodedBytes)) & 0x3f) | flag); |
691 codeUnits[index] = _PERCENT; | 691 codeUnits[index] = _PERCENT; |
692 codeUnits[index + 1] = hexDigits.codeUnitAt(byte >> 4); | 692 codeUnits[index + 1] = hexDigits.codeUnitAt(byte >> 4); |
693 codeUnits[index + 2] = hexDigits.codeUnitAt(byte & 0xf); | 693 codeUnits[index + 2] = hexDigits.codeUnitAt(byte & 0xf); |
694 index += 3; | 694 index += 3; |
695 flag = 0x80; | 695 flag = 0x80; |
696 } | 696 } |
697 } | 697 } |
698 return new String.fromCharCodes(DEVC$RT.cast(codeUnits, DEVC$RT.type((List<dy
namic> _) { | 698 return new String.fromCharCodes(DEVC$RT.cast(codeUnits, DEVC$RT.type((List<dy
namic> _) { |
699 } | 699 } |
700 ), DEVC$RT.type((Iterable<int> _) { | 700 ), DEVC$RT.type((Iterable<int> _) { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 if (reference.path.startsWith("/")) { | 858 if (reference.path.startsWith("/")) { |
859 targetPath = _removeDotSegments(reference.path); | 859 targetPath = _removeDotSegments(reference.path); |
860 } | 860 } |
861 else { | 861 else { |
862 targetPath = _removeDotSegments(_merge(this._path, reference.path)); | 862 targetPath = _removeDotSegments(_merge(this._path, reference.path)); |
863 } | 863 } |
864 if (reference.hasQuery) targetQuery = reference.query; | 864 if (reference.hasQuery) targetQuery = reference.query; |
865 } | 865 } |
866 targetUserInfo = this._userInfo; | 866 targetUserInfo = this._userInfo; |
867 targetHost = this._host; | 867 targetHost = this._host; |
868 targetPort = ((__x15) => DEVC$RT.cast(__x15, num, int, "ImplicitCast", ""
"line 1489, column 22 of dart:core/uri.dart: """, __x15 is int, true))(this._por
t); | 868 targetPort = ((__x26) => DEVC$RT.cast(__x26, num, int, "ImplicitCast", ""
"line 1489, column 22 of dart:core/uri.dart: """, __x26 is int, true))(this._por
t); |
869 } | 869 } |
870 } | 870 } |
871 String fragment = reference.hasFragment ? reference.fragment : null; | 871 String fragment = reference.hasFragment ? reference.fragment : null; |
872 return new Uri._internal(targetScheme, targetUserInfo, targetHost, targetPort
, targetPath, targetQuery, fragment); | 872 return new Uri._internal(targetScheme, targetUserInfo, targetHost, targetPort
, targetPath, targetQuery, fragment); |
873 } | 873 } |
874 bool get hasAuthority => _host != null; | 874 bool get hasAuthority => _host != null; |
875 bool get hasPort => _port != null; | 875 bool get hasPort => _port != null; |
876 bool get hasQuery => _query != null; | 876 bool get hasQuery => _query != null; |
877 bool get hasFragment => _fragment != null; | 877 bool get hasFragment => _fragment != null; |
878 String get origin { | 878 String get origin { |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
963 } | 963 } |
964 return sb.toString(); | 964 return sb.toString(); |
965 } | 965 } |
966 bool operator ==(other) { | 966 bool operator ==(other) { |
967 if (other is! Uri) return false; | 967 if (other is! Uri) return false; |
968 Uri uri = DEVC$RT.cast(other, dynamic, Uri, "DynamicCast", """line 1698, colu
mn 15 of dart:core/uri.dart: """, other is Uri, true); | 968 Uri uri = DEVC$RT.cast(other, dynamic, Uri, "DynamicCast", """line 1698, colu
mn 15 of dart:core/uri.dart: """, other is Uri, true); |
969 return scheme == uri.scheme && hasAuthority == uri.hasAuthority && userInfo =
= uri.userInfo && host == uri.host && port == uri.port && path == uri.path && ha
sQuery == uri.hasQuery && query == uri.query && hasFragment == uri.hasFragment &
& fragment == uri.fragment; | 969 return scheme == uri.scheme && hasAuthority == uri.hasAuthority && userInfo =
= uri.userInfo && host == uri.host && port == uri.port && path == uri.path && ha
sQuery == uri.hasQuery && query == uri.query && hasFragment == uri.hasFragment &
& fragment == uri.fragment; |
970 } | 970 } |
971 int get hashCode { | 971 int get hashCode { |
972 int combine(part, current) { | 972 int combine(part, current) { |
973 return ((__x16) => DEVC$RT.cast(__x16, dynamic, int, "DynamicCast", """line
1714, column 14 of dart:core/uri.dart: """, __x16 is int, true))((current * 31 +
part.hashCode) & 0x3FFFFFFF); | 973 return ((__x27) => DEVC$RT.cast(__x27, dynamic, int, "DynamicCast", """line
1714, column 14 of dart:core/uri.dart: """, __x27 is int, true))((current * 31 +
part.hashCode) & 0x3FFFFFFF); |
974 } | 974 } |
975 return combine(scheme, combine(userInfo, combine(host, combine(port, combine(
path, combine(query, combine(fragment, 1))))))); | 975 return combine(scheme, combine(userInfo, combine(host, combine(port, combine(
path, combine(query, combine(fragment, 1))))))); |
976 } | 976 } |
977 static void _addIfNonEmpty(StringBuffer sb, String test, String first, String s
econd) { | 977 static void _addIfNonEmpty(StringBuffer sb, String test, String first, String s
econd) { |
978 if ("" != test) { | 978 if ("" != test) { |
979 sb.write(first); | 979 sb.write(first); |
980 sb.write(second); | 980 sb.write(second); |
981 } | 981 } |
982 } | 982 } |
983 static String encodeComponent(String component) { | 983 static String encodeComponent(String component) { |
(...skipping 26 matching lines...) Expand all Loading... |
1010 ), DEVC$RT.type((List<int> _) { | 1010 ), DEVC$RT.type((List<int> _) { |
1011 } | 1011 } |
1012 ), "CompositeCast", """line 1832, column 23 of dart:core/uri.dart: """, _encod
eFullTable is List<int>, false), uri); | 1012 ), "CompositeCast", """line 1832, column 23 of dart:core/uri.dart: """, _encod
eFullTable is List<int>, false), uri); |
1013 } | 1013 } |
1014 static String decodeFull(String uri) { | 1014 static String decodeFull(String uri) { |
1015 return _uriDecode(uri); | 1015 return _uriDecode(uri); |
1016 } | 1016 } |
1017 static Map<String, String> splitQueryString(String query, { | 1017 static Map<String, String> splitQueryString(String query, { |
1018 Encoding encoding : UTF8} | 1018 Encoding encoding : UTF8} |
1019 ) { | 1019 ) { |
1020 return ((__x17) => DEVC$RT.cast(__x17, dynamic, DEVC$RT.type((Map<String, Stri
ng> _) { | 1020 return ((__x28) => DEVC$RT.cast(__x28, dynamic, DEVC$RT.type((Map<String, Stri
ng> _) { |
1021 } | 1021 } |
1022 ), "CompositeCast", """line 1864, column 12 of dart:core/uri.dart: """, __x17
is Map<String, String>, false))(query.split("&").fold({ | 1022 ), "CompositeCast", """line 1864, column 12 of dart:core/uri.dart: """, __x28
is Map<String, String>, false))(query.split("&").fold({ |
1023 } | 1023 } |
1024 , (map, element) { | 1024 , (map, element) { |
1025 int index = ((__x18) => DEVC$RT.cast(__x18, dynamic, int, "DynamicCast", """
line 1865, column 19 of dart:core/uri.dart: """, __x18 is int, true))(element.in
dexOf("=")); | 1025 int index = ((__x29) => DEVC$RT.cast(__x29, dynamic, int, "DynamicCast", """
line 1865, column 19 of dart:core/uri.dart: """, __x29 is int, true))(element.in
dexOf("=")); |
1026 if (index == -1) { | 1026 if (index == -1) { |
1027 if (element != "") { | 1027 if (element != "") { |
1028 map[decodeQueryComponent(DEVC$RT.cast(element, dynamic, String, "Dynamic
Cast", """line 1868, column 36 of dart:core/uri.dart: """, element is String, tr
ue), encoding: encoding)] = ""; | 1028 map[decodeQueryComponent(DEVC$RT.cast(element, dynamic, String, "Dynamic
Cast", """line 1868, column 36 of dart:core/uri.dart: """, element is String, tr
ue), encoding: encoding)] = ""; |
1029 } | 1029 } |
1030 } | 1030 } |
1031 else if (index != 0) { | 1031 else if (index != 0) { |
1032 var key = element.substring(0, index); | 1032 var key = element.substring(0, index); |
1033 var value = element.substring(index + 1); | 1033 var value = element.substring(index + 1); |
1034 map[Uri.decodeQueryComponent(DEVC$RT.cast(key, dynamic, String, "DynamicC
ast", """line 1873, column 38 of dart:core/uri.dart: """, key is String, true),
encoding: encoding)] = decodeQueryComponent(DEVC$RT.cast(value, dynamic, String,
"DynamicCast", """line 1874, column 34 of dart:core/uri.dart: """, value is Str
ing, true), encoding: encoding); | 1034 map[Uri.decodeQueryComponent(DEVC$RT.cast(key, dynamic, String, "DynamicC
ast", """line 1873, column 38 of dart:core/uri.dart: """, key is String, true),
encoding: encoding)] = decodeQueryComponent(DEVC$RT.cast(value, dynamic, String,
"DynamicCast", """line 1874, column 34 of dart:core/uri.dart: """, value is Str
ing, true), encoding: encoding); |
1035 } | 1035 } |
1036 return map; | 1036 return map; |
1037 } | 1037 } |
1038 )); | 1038 )); |
1039 } | 1039 } |
1040 static List<int> parseIPv4Address(String host) { | 1040 static List<int> parseIPv4Address(String host) { |
1041 void error(String msg) { | 1041 void error(String msg) { |
1042 throw new FormatException('Illegal IPv4 address, $msg'); | 1042 throw new FormatException('Illegal IPv4 address, $msg'); |
1043 } | 1043 } |
1044 var bytes = host.split('.'); | 1044 var bytes = host.split('.'); |
1045 if (bytes.length != 4) { | 1045 if (bytes.length != 4) { |
1046 error('IPv4 address should contain exactly 4 parts'); | 1046 error('IPv4 address should contain exactly 4 parts'); |
1047 } | 1047 } |
1048 return ((__x19) => DEVC$RT.cast(__x19, DEVC$RT.type((List<dynamic> _) { | 1048 return ((__x30) => DEVC$RT.cast(__x30, DEVC$RT.type((List<dynamic> _) { |
1049 } | 1049 } |
1050 ), DEVC$RT.type((List<int> _) { | 1050 ), DEVC$RT.type((List<int> _) { |
1051 } | 1051 } |
1052 ), "CompositeCast", """line 1896, column 12 of dart:core/uri.dart: """, __x19
is List<int>, false))(bytes.map((byteString) { | 1052 ), "CompositeCast", """line 1896, column 12 of dart:core/uri.dart: """, __x30
is List<int>, false))(bytes.map((byteString) { |
1053 int byte = int.parse(DEVC$RT.cast(byteString, dynamic, String, "DynamicCast"
, """line 1898, column 32 of dart:core/uri.dart: """, byteString is String, true
)); | 1053 int byte = int.parse(DEVC$RT.cast(byteString, dynamic, String, "DynamicCast"
, """line 1898, column 32 of dart:core/uri.dart: """, byteString is String, true
)); |
1054 if (byte < 0 || byte > 255) { | 1054 if (byte < 0 || byte > 255) { |
1055 error('each part must be in the range of `0..255`'); | 1055 error('each part must be in the range of `0..255`'); |
1056 } | 1056 } |
1057 return byte; | 1057 return byte; |
1058 } | 1058 } |
1059 ).toList()); | 1059 ).toList()); |
1060 } | 1060 } |
1061 static List<int> parseIPv6Address(String host, [int start = 0, int end]) { | 1061 static List<int> parseIPv6Address(String host, [int start = 0, int end]) { |
1062 if (end == null) end = host.length; | 1062 if (end == null) end = host.length; |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 static const int _RIGHT_BRACKET = 0x5D; | 1174 static const int _RIGHT_BRACKET = 0x5D; |
1175 static const int _LOWER_CASE_A = 0x61; | 1175 static const int _LOWER_CASE_A = 0x61; |
1176 static const int _LOWER_CASE_F = 0x66; | 1176 static const int _LOWER_CASE_F = 0x66; |
1177 static const int _LOWER_CASE_Z = 0x7A; | 1177 static const int _LOWER_CASE_Z = 0x7A; |
1178 static const int _BAR = 0x7C; | 1178 static const int _BAR = 0x7C; |
1179 static String _uriEncode(List<int> canonicalTable, String text, { | 1179 static String _uriEncode(List<int> canonicalTable, String text, { |
1180 Encoding encoding : UTF8, bool spaceToPlus : false} | 1180 Encoding encoding : UTF8, bool spaceToPlus : false} |
1181 ) { | 1181 ) { |
1182 byteToHex(byte, buffer) { | 1182 byteToHex(byte, buffer) { |
1183 const String hex = '0123456789ABCDEF'; | 1183 const String hex = '0123456789ABCDEF'; |
1184 buffer.writeCharCode(hex.codeUnitAt(((__x20) => DEVC$RT.cast(__x20, dynamic
, int, "DynamicCast", """line 2059, column 43 of dart:core/uri.dart: """, __x20
is int, true))(byte >> 4))); | 1184 buffer.writeCharCode(hex.codeUnitAt(((__x31) => DEVC$RT.cast(__x31, dynamic
, int, "DynamicCast", """line 2059, column 43 of dart:core/uri.dart: """, __x31
is int, true))(byte >> 4))); |
1185 buffer.writeCharCode(hex.codeUnitAt(((__x21) => DEVC$RT.cast(__x21, dynamic
, int, "DynamicCast", """line 2060, column 43 of dart:core/uri.dart: """, __x21
is int, true))(byte & 0x0f))); | 1185 buffer.writeCharCode(hex.codeUnitAt(((__x32) => DEVC$RT.cast(__x32, dynamic
, int, "DynamicCast", """line 2060, column 43 of dart:core/uri.dart: """, __x32
is int, true))(byte & 0x0f))); |
1186 } | 1186 } |
1187 StringBuffer result = new StringBuffer(); | 1187 StringBuffer result = new StringBuffer(); |
1188 var bytes = encoding.encode(text); | 1188 var bytes = encoding.encode(text); |
1189 for (int i = 0; i < bytes.length; i++) { | 1189 for (int i = 0; i < bytes.length; i++) { |
1190 int byte = bytes[i]; | 1190 int byte = bytes[i]; |
1191 if (byte < 128 && ((canonicalTable[byte >> 4] & (1 << (byte & 0x0f))) != 0)
) { | 1191 if (byte < 128 && ((canonicalTable[byte >> 4] & (1 << (byte & 0x0f))) != 0)
) { |
1192 result.writeCharCode(byte); | 1192 result.writeCharCode(byte); |
1193 } | 1193 } |
1194 else if (spaceToPlus && byte == _SPACE) { | 1194 else if (spaceToPlus && byte == _SPACE) { |
1195 result.writeCharCode(_PLUS); | 1195 result.writeCharCode(_PLUS); |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1268 static const _schemeTable = const [0x0000, 0x0000, 0x6800, 0x03ff, 0xfffe, 0x07
ff, 0xfffe, 0x07ff]; | 1268 static const _schemeTable = const [0x0000, 0x0000, 0x6800, 0x03ff, 0xfffe, 0x07
ff, 0xfffe, 0x07ff]; |
1269 static const _schemeLowerTable = const [0x0000, 0x0000, 0x6800, 0x03ff, 0x0000,
0x0000, 0xfffe, 0x07ff]; | 1269 static const _schemeLowerTable = const [0x0000, 0x0000, 0x6800, 0x03ff, 0x0000,
0x0000, 0xfffe, 0x07ff]; |
1270 static const _subDelimitersTable = const [0x0000, 0x0000, 0x7fd2, 0x2bff, 0xfff
e, 0x87ff, 0xfffe, 0x47ff]; | 1270 static const _subDelimitersTable = const [0x0000, 0x0000, 0x7fd2, 0x2bff, 0xfff
e, 0x87ff, 0xfffe, 0x47ff]; |
1271 static const _genDelimitersTable = const [0x0000, 0x0000, 0x8008, 0x8400, 0x000
1, 0x2800, 0x0000, 0x0000]; | 1271 static const _genDelimitersTable = const [0x0000, 0x0000, 0x8008, 0x8400, 0x000
1, 0x2800, 0x0000, 0x0000]; |
1272 static const _userinfoTable = const [0x0000, 0x0000, 0x7fd2, 0x2fff, 0xfffe, 0x
87ff, 0xfffe, 0x47ff]; | 1272 static const _userinfoTable = const [0x0000, 0x0000, 0x7fd2, 0x2fff, 0xfffe, 0x
87ff, 0xfffe, 0x47ff]; |
1273 static const _regNameTable = const [0x0000, 0x0000, 0x7ff2, 0x2bff, 0xfffe, 0x8
7ff, 0xfffe, 0x47ff]; | 1273 static const _regNameTable = const [0x0000, 0x0000, 0x7ff2, 0x2bff, 0xfffe, 0x8
7ff, 0xfffe, 0x47ff]; |
1274 static const _pathCharTable = const [0x0000, 0x0000, 0x7fd2, 0x2fff, 0xffff, 0x
87ff, 0xfffe, 0x47ff]; | 1274 static const _pathCharTable = const [0x0000, 0x0000, 0x7fd2, 0x2fff, 0xffff, 0x
87ff, 0xfffe, 0x47ff]; |
1275 static const _pathCharOrSlashTable = const [0x0000, 0x0000, 0xffd2, 0x2fff, 0xf
fff, 0x87ff, 0xfffe, 0x47ff]; | 1275 static const _pathCharOrSlashTable = const [0x0000, 0x0000, 0xffd2, 0x2fff, 0xf
fff, 0x87ff, 0xfffe, 0x47ff]; |
1276 static const _queryCharTable = const [0x0000, 0x0000, 0xffd2, 0xafff, 0xffff, 0
x87ff, 0xfffe, 0x47ff]; | 1276 static const _queryCharTable = const [0x0000, 0x0000, 0xffd2, 0xafff, 0xffff, 0
x87ff, 0xfffe, 0x47ff]; |
1277 } | 1277 } |
OLD | NEW |