| 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 1890de0cb0ff4a2dfcb2c009cf5ecf87a71a066c..ff0cf493b32e7ca4331741af2107beaf45320721 100644
|
| --- a/sdk/lib/_internal/lib/js_helper.dart
|
| +++ b/sdk/lib/_internal/lib/js_helper.dart
|
| @@ -715,7 +715,7 @@ class Primitives {
|
| selectorName,
|
| JSInvocationMirror.METHOD,
|
| arguments,
|
| - namedArguments == null ? null : namedArguments.keys.toList()));
|
| + namedArguments == null ? [] : namedArguments.keys.toList()));
|
| }
|
| // We bound 'this' to [function] because of how we compile
|
| // closures: escaped local variables are stored and accessed through
|
|
|