| Index: lib/runtime/dart/js.js
|
| diff --git a/lib/runtime/dart/js.js b/lib/runtime/dart/js.js
|
| index e0d18f5558bf12af9ca07662446450705bffdc96..ca0b38c1828283ab57051affeb90e1a5fbe5aa03 100644
|
| --- a/lib/runtime/dart/js.js
|
| +++ b/lib/runtime/dart/js.js
|
| @@ -18,7 +18,7 @@ dart_library.library('dart/js', null, /* Imports */[
|
| let captureThis = opts && 'captureThis' in opts ? opts.captureThis : false;
|
| return function(_call, f, captureThis) {
|
| return function() {
|
| - return _call(f, captureThis, this, Array.prototype.slice.apply(arguments$));
|
| + return _call(f, captureThis, this, Array.prototype.slice.apply(arguments));
|
| };
|
| }(_foreign_helper.DART_CLOSURE_TO_JS(_callDartFunction), f, captureThis);
|
| }
|
|
|