OLD | NEW |
---|---|
(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, | |
Lasse Reichstein Nielsen
2013/05/22 08:47:26
Consider using hex for the low numbers too.
floitsch
2013/05/23 02:30:03
Done.
| |
9 10, | |
10 11, | |
11 12, | |
12 13, | |
13 0x20, | |
14 0xA0, | |
15 0x85, | |
16 0x1680, | |
17 0x180E, | |
18 0x2000, | |
19 0x2001, | |
20 0x2002, | |
21 0x2003, | |
22 0x2004, | |
23 0x2005, | |
24 0x2006, | |
25 0x2007, | |
26 0x2008, | |
27 0x2009, | |
28 0x200A, | |
29 0x202F, | |
30 0x205F, | |
31 0x3000, | |
32 0x2028, | |
33 0x2029, | |
34 0xFEFF, | |
35 ]; | |
36 | |
37 main() { | |
38 for (var ws in WHITESPACE) { | |
39 Expect.equals("", new String.fromCharCode(ws).trim()); | |
40 } | |
41 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim()); | |
42 for (var ws in WHITESPACE) { | |
43 var c = new String.fromCharCode(ws); | |
44 Expect.equals("a", ("a" + c).trim()); | |
45 Expect.equals("a", (c + "a").trim()); | |
46 Expect.equals("a", (c + c + "a" + c + c).trim()); | |
47 } | |
Lasse Reichstein Nielsen
2013/05/22 08:47:26
Consider running through all other characters and
floitsch
2013/05/23 02:30:03
I really think that would be too slow. Convince me
| |
48 } | |
OLD | NEW |