| Index: dart/lib/compiler/implementation/lib/string_helper.dart
|
| diff --git a/dart/lib/compiler/implementation/lib/string_helper.dart b/dart/lib/compiler/implementation/lib/string_helper.dart
|
| index 1b9af7b4bfbe034bffca6f1559cc0049af55320b..06ad48291e8d3184ccb03ed04a841409a0ddc9cb 100644
|
| --- a/dart/lib/compiler/implementation/lib/string_helper.dart
|
| +++ b/dart/lib/compiler/implementation/lib/string_helper.dart
|
| @@ -133,3 +133,7 @@ stringSplitUnchecked(receiver, pattern) {
|
| throw "StringImplementation.split(Pattern) UNIMPLEMENTED";
|
| }
|
| }
|
| +
|
| +stringJoinUnchecked(array, separator) {
|
| + return JS('String', @'#.join(#)', array, separator);
|
| +}
|
|
|