Files
sdk/runtime/lib/string_patch.dart
T
ajohnsen@google.com 60c99504bc Unify String.
BUG=

Review URL: https://chromiumcodereview.appspot.com//10883052

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@11380 260f80e4-7a28-3924-810f-c04153c831b5
2012-08-27 12:26:32 +00:00

18 lines
615 B
Dart

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// 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.
patch class StringImplementation {
/* patch */ static String _fromCharCodes(List<int> charCodes) {
return StringBase.createFromCharCodes(charCodes);
}
/* patch */ static String join(List<String> strings, String separator) {
return StringBase.join(strings, separator);
}
/* patch */ static String concatAll(List<String> strings) {
return StringBase.concatAll(strings);
}
}