| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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 void main() { | 7 void main() { |
| 8 Expect.equals("", new String.fromCharCodes(new List(0))); | 8 Expect.equals("", new String.fromCharCodes(new List(0))); |
| 9 Expect.equals("", new String.fromCharCodes([])); | 9 Expect.equals("", new String.fromCharCodes([])); |
| 10 Expect.equals("", new String.fromCharCodes(const [])); | 10 Expect.equals("", new String.fromCharCodes(const [])); |
| 11 Expect.equals("AB", new String.fromCharCodes([65, 66])); | 11 Expect.equals("AB", new String.fromCharCodes([65, 66])); |
| 12 Expect.equals("AB", new String.fromCharCodes(const [65, 66])); | 12 Expect.equals("AB", new String.fromCharCodes(const [65, 66])); |
| 13 Expect.equals("Ærø", new String.fromCharCodes(const [0xc6, 0x72, 0xf8])); | 13 Expect.equals("Ærø", new String.fromCharCodes(const [0xc6, 0x72, 0xf8])); |
| 14 Expect.equals("\u{1234}", new String.fromCharCodes([0x1234])); | 14 Expect.equals("\u{1234}", new String.fromCharCodes([0x1234])); |
| 15 Expect.equals("\u{12345}*", new String.fromCharCodes([0x12345, 42])); | 15 Expect.equals("\u{12345}*", new String.fromCharCodes([0x12345, 42])); |
| 16 Expect.equals("", new String.fromCharCodes(new List())); | 16 Expect.equals("", new String.fromCharCodes(new List())); |
| 17 { | 17 { |
| 18 var a = new List(); | 18 var a = <int>[]; |
| 19 a.add(65); | 19 a.add(65); |
| 20 a.add(66); | 20 a.add(66); |
| 21 Expect.equals("AB", new String.fromCharCodes(a)); | 21 Expect.equals("AB", new String.fromCharCodes(a)); |
| 22 } | 22 } |
| 23 | 23 |
| 24 // Long list (bug 6919). | 24 // Long list (bug 6919). |
| 25 for (int len in [499, 500, 501, 999, 100000]) { | 25 for (int len in [499, 500, 501, 999, 100000]) { |
| 26 List<int> list = new List(len); | 26 List<int> list = new List(len); |
| 27 for (int i = 0; i < len; i++) { | 27 for (int i = 0; i < len; i++) { |
| 28 list[i] = 65 + (i % 26); | 28 list[i] = 65 + (i % 26); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(5)); | 75 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(5)); |
| 76 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(4)); | 76 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(4)); |
| 77 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(3)); | 77 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(3)); |
| 78 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(2)); | 78 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(2)); |
| 79 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(1)); | 79 Expect.equals(0xDC34, reversedNonBmp.codeUnitAt(1)); |
| 80 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(0)); | 80 Expect.equals(0xD812, reversedNonBmp.codeUnitAt(0)); |
| 81 | 81 |
| 82 Expect.equals(nonBmp, new String.fromCharCodes(nonBmp.codeUnits)); | 82 Expect.equals(nonBmp, new String.fromCharCodes(nonBmp.codeUnits)); |
| 83 Expect.equals(nonBmp, new String.fromCharCodes(nonBmp.runes)); | 83 Expect.equals(nonBmp, new String.fromCharCodes(nonBmp.runes)); |
| 84 } | 84 } |
| OLD | NEW |