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

Side by Side Diff: tests/corelib/reg_exp_unicode_2_test.dart

Issue 11411092: Revert "Add some support for the code-point code-unit distinction." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/reg_exp_unicode_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
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.
4 // Dart test for testing regular expressions in Dart.
5
6 // These tests currently fail due to bug 6592.
7 main() {
8 String str = "\u{10000}";
9
10 // Dot should match a surrogate pair.
11 Expect.isTrue(new RegExp(r'^.$').hasMatch(str));
12
13 // Non-BMP characters in character classes should be treated as one character,
14 // not two separate surrogates.
15 String alias = "\u{10402}"; // 0xd801 0xdc02.
16 String char_class = "\u{10401}\u{10802}"; // 0xd801 0xdc01 0xd802 0xdc02.
17 Expect.isFalse(new RegExp('^[$char_class]+\$').hasMatch(alias));
18 }
OLDNEW
« no previous file with comments | « tests/corelib/corelib.status ('k') | tests/corelib/reg_exp_unicode_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698