| Index: pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/es6/dart_sdk.js b/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| index 0ee9116ffa252be9e1184b593388870b8f13d9d7..8e04bfc1d75c8383b38b0de694a111126c50aec1 100644
|
| --- a/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/es6/dart_sdk.js
|
| @@ -1986,6 +1986,9 @@ dart.dput = function(obj, field, value) {
|
| 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) {
|
|
|