OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 const WHITESPACE = const [ | 7 const WHITESPACE = const [ |
8 0x09, | 8 9, |
9 0x0A, | 9 10, |
10 0x0B, | 10 11, |
11 0x0C, | 11 12, |
12 0x0D, | 12 13, |
13 0x20, | 13 0x20, |
14 0x85, | 14 0x85, |
15 0xA0, | 15 0xA0, |
16 0x1680, | 16 0x1680, |
17 0x180E, | 17 0x180E, |
18 0x2000, | 18 0x2000, |
19 0x2001, | 19 0x2001, |
20 0x2002, | 20 0x2002, |
21 0x2003, | 21 0x2003, |
22 0x2004, | 22 0x2004, |
(...skipping 14 matching lines...) Expand all Loading... |
37 main() { | 37 main() { |
38 for (var ws in WHITESPACE) { | 38 for (var ws in WHITESPACE) { |
39 Expect.equals("", new String.fromCharCode(ws).trim()); | 39 Expect.equals("", new String.fromCharCode(ws).trim()); |
40 } | 40 } |
41 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim()); | 41 Expect.equals("", new String.fromCharCodes(WHITESPACE).trim()); |
42 for (var ws in WHITESPACE) { | 42 for (var ws in WHITESPACE) { |
43 var c = new String.fromCharCode(ws); | 43 var c = new String.fromCharCode(ws); |
44 Expect.equals("a", ("a" + c).trim()); | 44 Expect.equals("a", ("a" + c).trim()); |
45 Expect.equals("a", (c + "a").trim()); | 45 Expect.equals("a", (c + "a").trim()); |
46 Expect.equals("a", (c + c + "a" + c + c).trim()); | 46 Expect.equals("a", (c + c + "a" + c + c).trim()); |
47 Expect.equals("a" + c + "a", (c + c + "a" + c + "a" + c + c).trim()); | |
48 } | 47 } |
49 } | 48 } |
OLD | NEW |