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

Unified Diff: tests/corelib/regexp/non-bmp_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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/corelib/regexp/non-bmp_test.dart
diff --git a/tests/corelib/regexp/non-bmp_test.dart b/tests/corelib/regexp/non-bmp_test.dart
index 3160f9e13392967a7188b408850ef8780a90724b..9849bba321fa3f98355f753c0aeebea7e8bdc79d 100644
--- a/tests/corelib/regexp/non-bmp_test.dart
+++ b/tests/corelib/regexp/non-bmp_test.dart
@@ -26,21 +26,26 @@ import 'v8_regexp_utils.dart';
import 'package:expect/expect.dart';
void main() {
- description(
- 'Tests that regular expressions treat non-BMP characters as two separate characters. '
- + 'From a Unicode correctness point of view this is wrong, but it is what other browsers do. '
- + 'And given that we store strings as UTF-16, it is also more efficient to implement. '
- + 'Also test some other cases related to UTF-8 and UTF-16.'
- );
+ description('Tests that regular expressions treat non-BMP characters as two separate characters. ' +
+ 'From a Unicode correctness point of view this is wrong, but it is what other browsers do. ' +
+ 'And given that we store strings as UTF-16, it is also more efficient to implement. ' +
+ 'Also test some other cases related to UTF-8 and UTF-16.');
- var surrogatePair = new String.fromCharCode(0xD800) + new String.fromCharCode(0xDC00);
+ var surrogatePair =
+ new String.fromCharCode(0xD800) + new String.fromCharCode(0xDC00);
assertEquals(new RegExp(r".").firstMatch(surrogatePair).group(0).length, 1);
assertEquals(new RegExp(r"\D").firstMatch(surrogatePair).group(0).length, 1);
assertEquals(new RegExp(r"\S").firstMatch(surrogatePair).group(0).length, 1);
assertEquals(new RegExp(r"\W").firstMatch(surrogatePair).group(0).length, 1);
- assertEquals(new RegExp(r"[^x]").firstMatch(surrogatePair).group(0).length, 1);
+ assertEquals(
+ new RegExp(r"[^x]").firstMatch(surrogatePair).group(0).length, 1);
- assertEquals(new RegExp(r".{1,2}").firstMatch("!!" + new String.fromCharCode(0xA1)).group(0).length, 2);
+ assertEquals(
+ new RegExp(r".{1,2}")
+ .firstMatch("!!" + new String.fromCharCode(0xA1))
+ .group(0)
+ .length,
+ 2);
shouldBeNull(new RegExp(r".").firstMatch(""));
}

Powered by Google App Engine
This is Rietveld 408576698