Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2855)

Unified Diff: dart/tests/corelib/apply2_test.dart

Issue 14107006: Update Function.apply to use Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: dart/tests/corelib/apply2_test.dart
diff --git a/dart/tests/corelib/apply2_test.dart b/dart/tests/corelib/apply2_test.dart
index e733a2421aa12be83fa4a9f3b4f4b361811d1b08..65299ff197d5de74559b1be38cc3252f3423bbf4 100644
--- a/dart/tests/corelib/apply2_test.dart
+++ b/dart/tests/corelib/apply2_test.dart
@@ -3,10 +3,12 @@
// BSD-style license that can be found in the LICENSE file.
import "package:expect/expect.dart";
+import "symbol_map_helper.dart";
apply(Function function, ArgumentDescriptor args) {
return Function.apply(
- function, args.positionalArguments, args.namedArguments);
+ function, args.positionalArguments,
+ convertStringToSymbolMap(args.namedArguments));
}
class ArgumentDescriptor {

Powered by Google App Engine
This is Rietveld 408576698