| Index: test/generated_sdk/lib/core/function.dart
|
| diff --git a/test/generated_sdk/lib/core/function.dart b/test/generated_sdk/lib/core/function.dart
|
| index 1e73839566f78d6f7190da5632e2d2e6d32a41d7..cdd298791c52cbd1df712a495dda9e37975587d0 100644
|
| --- a/test/generated_sdk/lib/core/function.dart
|
| +++ b/test/generated_sdk/lib/core/function.dart
|
| @@ -36,9 +36,9 @@ abstract class Function {
|
| static apply(Function f,
|
| List positionalArguments,
|
| [Map<Symbol, dynamic> namedArguments]) {
|
| - return Primitives.applyFunction(
|
| - f, positionalArguments,
|
| - namedArguments == null ? null : _toMangledNames(namedArguments));
|
| + // TODO(vsm): Handle named args.
|
| + // See: https://github.com/dart-lang/dev_compiler/issues/176
|
| + return JS('', 'dart.dcall.apply(null, [#].concat(#))', f, positionalArguments);
|
| }
|
|
|
| /**
|
|
|