| Index: pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/common/dart_sdk.js b/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| index 86f937e502ca16f4fa902b00bb9e4a19bd78157f..674993a1a37d40b1ccda02700465db71af65d846 100644
|
| --- a/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/common/dart_sdk.js
|
| @@ -1988,6 +1988,9 @@
|
| return dart.noSuchMethod(obj, new dart.InvocationImpl(field, [value], {isSetter: true}));
|
| };
|
| dart._checkApply = function(type, actuals) {
|
| + if (type instanceof Array) {
|
| + type = type[0];
|
| + }
|
| if (actuals.length < type.args.length) return false;
|
| let index = 0;
|
| for (let i = 0; i < type.args.length; ++i) {
|
|
|