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

Unified Diff: dart/sdk/lib/core/invocation.dart

Issue 14066019: Change memberName and namedArguments in Invocation 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/sdk/lib/core/invocation.dart
diff --git a/dart/sdk/lib/core/invocation.dart b/dart/sdk/lib/core/invocation.dart
index 2e4dd90e4a571a0a49951249f71229cc0e8b0745..092a9078f86ccf00734b34a294b9edcebcdb87b2 100644
--- a/dart/sdk/lib/core/invocation.dart
+++ b/dart/sdk/lib/core/invocation.dart
@@ -13,13 +13,13 @@ part of dart.core;
*/
abstract class Invocation {
/** The name of the invoked member. */
Ivan Posva 2013/04/16 18:19:49 To be able to get the "name" of the invoked member
ahe 2013/04/16 18:32:00 Did you notice MirrorSystem.getName? Does that pro
- String get memberName;
+ Symbol get memberName;
/** An unmodifiable view of the positional arguments of the call. */
List get positionalArguments;
/** An unmodifiable view of the named arguments of the call. */
- Map<String, dynamic> get namedArguments;
+ Map<Symbol, dynamic> get namedArguments;
/** Whether the invocation was a method call. */
bool get isMethod;
« no previous file with comments | « dart/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart ('k') | dart/tests/co19/co19-dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698