| Index: sdk/lib/_internal/js_runtime/lib/js_helper.dart
|
| diff --git a/sdk/lib/_internal/js_runtime/lib/js_helper.dart b/sdk/lib/_internal/js_runtime/lib/js_helper.dart
|
| index 92ea4ba711190e0054f6a9a3fdcfcb7d7baa619f..dda551ee2346b9596fbad5358571285abfa35ad7 100644
|
| --- a/sdk/lib/_internal/js_runtime/lib/js_helper.dart
|
| +++ b/sdk/lib/_internal/js_runtime/lib/js_helper.dart
|
| @@ -1271,7 +1271,8 @@ class Primitives {
|
| var jsFunction = JS('var', '#[#]', function, selectorName);
|
| if (jsFunction == null) {
|
| var interceptor = getInterceptor(function);
|
| - jsFunction = JS('', '#["call*"]', interceptor);
|
| + jsFunction = JS('', '#[#]', interceptor,
|
| + JS_GET_NAME(JsGetName.CALL_CATCH_ALL));
|
|
|
| if (jsFunction == null) {
|
| return functionNoSuchMethod(function, arguments, null);
|
|
|