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

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

Issue 15333006: Rewrite double.parse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add parenthesis. Created 7 years, 7 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
(Empty)
1 // Copyright (c) 2013, 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
5 import "package:expect/expect.dart";
6
7 const WHITESPACE = const [
8 9,
9 10,
10 11,
11 12,
12 13,
13 0x20,
14 0xA0,
15 0x1680,
16 0x180E,
17 0x2000,
18 0x2001,
19 0x2002,
20 0x2003,
21 0x2004,
22 0x2005,
23 0x2006,
24 0x2007,
25 0x2008,
26 0x2009,
27 0x200A,
28 0x202F,
29 0x205F,
30 0x3000,
31 0x2028,
32 0x2029,
33 0xFEFF,
34 ];
35
36 main() {
37 for (var ws in WHITESPACE) {
38 Expect.equals("", new String.fromCharCode(ws).trim());
39 }
40 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim());
41 for (var ws in WHITESPACE) {
42 var c = new String.fromCharCode(ws);
43 Expect.equals("a", ("a" + c).trim());
44 Expect.equals("a", (c + "a").trim());
45 Expect.equals("a", (c + c + "a" + c + c).trim());
46 }
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698