| Index: sdk/lib/utf/utf.dart
|
| diff --git a/sdk/lib/utf/utf.dart b/sdk/lib/utf/utf.dart
|
| index 2031e6233abf2b547720f523f8ed5ccf276dd941..1c8c95cb180aa591fd7472c639f330e1823d6bdd 100644
|
| --- a/sdk/lib/utf/utf.dart
|
| +++ b/sdk/lib/utf/utf.dart
|
| @@ -21,6 +21,8 @@ List<int> stringToCodepoints(String str) {
|
|
|
| /**
|
| * Generate a string from the provided Unicode codepoints.
|
| + *
|
| + * *Deprecated* Use [String.fromCharCodes] instead.
|
| */
|
| String codepointsToString(List<int> codepoints) {
|
| return new String.fromCharCodes(codepoints);
|
|
|