OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012, 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 library utf_test; | |
6 import 'dart:utf'; | |
7 | |
8 main() { | |
9 String str = codepointsToString([0x1d537]); | |
10 // String.charCodes gives 16-bit code units, but stringToCodepoints gives | |
11 // back the original code points. | |
12 Expect.listEquals(str.charCodes, [0xd835, 0xdd37]); | |
Lasse Reichstein Nielsen
2012/11/06 09:57:38
Expected values should be first argument.
Jennifer Messerly
2012/11/06 18:41:20
Good catch. Done. I've been using the unittest "ex
| |
13 Expect.listEquals(stringToCodepoints(str), [0x1d537]); | |
14 } | |
OLD | NEW |