| Index: sdk/lib/_internal/compiler/implementation/js_backend/backend.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/js_backend/backend.dart (revision 18037)
|
| +++ sdk/lib/_internal/compiler/implementation/js_backend/backend.dart (working copy)
|
| @@ -636,6 +636,7 @@
|
| Element jsArrayAdd;
|
| Element jsStringSplit;
|
| Element jsStringConcat;
|
| + Element jsStringToString;
|
| Element getInterceptorMethod;
|
| Element fixedLengthListConstructor;
|
| bool seenAnyClass = false;
|
| @@ -801,6 +802,8 @@
|
| jsStringClass, const SourceString('split'));
|
| jsStringConcat = compiler.lookupElementIn(
|
| jsStringClass, const SourceString('concat'));
|
| + jsStringToString = compiler.lookupElementIn(
|
| + jsStringClass, const SourceString('toString'));
|
|
|
| for (ClassElement cls in classes) {
|
| if (cls != null) interceptedClasses[cls] = null;
|
|
|