Chromium Code Reviews| Index: tools/testing/dart/utils.dart |
| diff --git a/tools/testing/dart/utils.dart b/tools/testing/dart/utils.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..287a3bb2d9492f3c6bfc59535d89a11842ca1dbd |
| --- /dev/null |
| +++ b/tools/testing/dart/utils.dart |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
|
ricow1
2013/01/15 10:25:37
2013
kustermann
2013/01/15 10:31:01
Done.
|
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +library utils; |
| + |
| +import 'dart:utf' as utf; |
| + |
| + |
| +List<int> encodeUtf8(String string) { |
| + return utf.encodeUtf8(string); |
| +} |
| + |
| +// TODO(kustermann,ricow): As soon we have a debug log we should log |
| +// invalid utf8-encoded input to the log. |
| +// Currently invalid bytes will be replaced by a replacement character. |
| +String decodeUtf8(List<int> bytes) { |
| + return utf.decodeUtf8(bytes); |
| +} |
| + |