| 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"; |
| 6 |
| 5 main() { | 7 main() { |
| 6 test(String s) { | 8 test(String s) { |
| 7 Iterable<int> units = s.codeUnits; | 9 Iterable<int> units = s.codeUnits; |
| 8 List<int> expectedUnits = <int>[]; | 10 List<int> expectedUnits = <int>[]; |
| 9 for (int i = 0; i < s.length; i++) { | 11 for (int i = 0; i < s.length; i++) { |
| 10 expectedUnits.add(s.codeUnitAt(i)); | 12 expectedUnits.add(s.codeUnitAt(i)); |
| 11 } | 13 } |
| 12 | 14 |
| 13 Expect.equals(s.length, units.length); | 15 Expect.equals(s.length, units.length); |
| 14 for (int i = 0; i < s.length; i++) { | 16 for (int i = 0; i < s.length; i++) { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 test(string); | 68 test(string); |
| 67 | 69 |
| 68 // Reading each unit of a surrogate pair works. | 70 // Reading each unit of a surrogate pair works. |
| 69 var r = "\u{10000}".codeUnits; | 71 var r = "\u{10000}".codeUnits; |
| 70 var it = r.iterator; | 72 var it = r.iterator; |
| 71 Expect.isTrue(it.moveNext()); | 73 Expect.isTrue(it.moveNext()); |
| 72 Expect.equals(0xD800, it.current); | 74 Expect.equals(0xD800, it.current); |
| 73 Expect.isTrue(it.moveNext()); | 75 Expect.isTrue(it.moveNext()); |
| 74 Expect.equals(0xDC00, it.current); | 76 Expect.equals(0xDC00, it.current); |
| 75 } | 77 } |
| OLD | NEW |