| Index: lib/compiler/implementation/lib/coreimpl_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| index 7dbfd731e335751f47cbb9b86934491c6e896f78..9eb3d798b60d446246dbcf4d06eb132e4e6e8b5c 100644
|
| --- a/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| +++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| @@ -18,6 +18,24 @@ patch class ObjectImplementation {
|
| }
|
|
|
|
|
| +// Patch for String implementation.
|
| +// TODO(ager): Split out into date_patch.dart and allow #source
|
| +// in patch files?
|
| +patch class StringImplementation {
|
| + patch static _fromCharCodes(List<int> charCodes) {
|
| + return StringBase.createFromCharCodes(charCodes);
|
| + }
|
| +
|
| + patch String join(List<String> strings, String separator) {
|
| + return StringBase.join(strings, separator);
|
| + }
|
| +
|
| + patch String concatAll(List<String> strings) {
|
| + return StringBase.concatAll(strings);
|
| + }
|
| +}
|
| +
|
| +
|
| // Patch for Date implementation.
|
| // TODO(ager): Split out into date_patch.dart and allow #source
|
| // in patch files?
|
|
|