| Index: sdk/lib/_internal/lib/js_helper.dart
|
| diff --git a/sdk/lib/_internal/lib/js_helper.dart b/sdk/lib/_internal/lib/js_helper.dart
|
| index 88ea87c8f18073101702b752f49590bd9558631f..4b434e6e18af97f6e3d9bc7077bc5b95f73cc0b8 100644
|
| --- a/sdk/lib/_internal/lib/js_helper.dart
|
| +++ b/sdk/lib/_internal/lib/js_helper.dart
|
| @@ -937,7 +937,8 @@ class Primitives {
|
| });
|
| }
|
|
|
| - String selectorName = 'call\$$argumentCount$names';
|
| + String selectorName =
|
| + '${JS_GET_NAME("CALL_PREFIX")}\$$argumentCount$names';
|
|
|
| return function.noSuchMethod(
|
| createUnmangledInvocationMirror(
|
| @@ -1010,7 +1011,7 @@ class Primitives {
|
| arguments.addAll(positionalArguments);
|
| }
|
|
|
| - String selectorName = 'call\$$argumentCount';
|
| + String selectorName = '${JS_GET_NAME("CALL_PREFIX")}\$$argumentCount';
|
| var jsFunction = JS('var', '#[#]', function, selectorName);
|
| if (jsFunction == null) {
|
|
|
|
|