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

Unified Diff: tests/lib/convert/unicode_tests.dart

Issue 23056002: Convert HashMap and LinkedHashMap to closed addressing hash tables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: tests/lib/convert/unicode_tests.dart
diff --git a/tests/lib/convert/unicode_tests.dart b/tests/lib/convert/unicode_tests.dart
index 1f90b7bed3b69891484f2a3f7a530186e241c48b..69a814c8511121b52fd1042563cd7e7228a28a88 100644
--- a/tests/lib/convert/unicode_tests.dart
+++ b/tests/lib/convert/unicode_tests.dart
@@ -34,7 +34,8 @@ const SIVA_STRING2 = "िसवा अणामालै";
// DESERET CAPITAL LETTER BEE, unicode 0x10412(0xD801+0xDC12)
// UTF-8: F0 90 90 92
const BEE_BYTES = const [0xf0, 0x90, 0x90, 0x92];
-const BEE_STRING = "𐐒";
+//const BEE_STRING = "𐐒";
regis 2013/08/13 16:51:35 Left over comment?
Lasse Reichstein Nielsen 2013/08/14 07:31:38 Yes. Well spotted. Probably forgot to save after r
+const BEE_STRING = "\u{10412}";
const DIGIT_BYTES = const [ 0x35 ];
const DIGIT_STRING = "5";
« sdk/lib/json/json.dart ('K') | « tests/lib/convert/streamed_conversion_json_utf8_decode_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698