| Index: sdk/lib/_internal/compiler/js_lib/js_helper.dart
|
| diff --git a/sdk/lib/_internal/compiler/js_lib/js_helper.dart b/sdk/lib/_internal/compiler/js_lib/js_helper.dart
|
| index 00762965110ee60239a64e75275a7abb84a7cbda..48d6d0a6056db16fa2a36590a5f1161d58685ffa 100644
|
| --- a/sdk/lib/_internal/compiler/js_lib/js_helper.dart
|
| +++ b/sdk/lib/_internal/compiler/js_lib/js_helper.dart
|
| @@ -826,7 +826,7 @@ class Primitives {
|
| }
|
|
|
| static String flattenString(String str) {
|
| - return JS('', "#.charCodeAt(0) == 0 ? # : #", str, str, str);
|
| + return JS('String', "#.charCodeAt(0) == 0 ? # : #", str, str, str);
|
| }
|
|
|
| static String getTimeZoneName(receiver) {
|
|
|