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

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

Issue 11312237: Dynamic -> dynamic. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « sdk/lib/core/collection.dart ('k') | sdk/lib/core/function.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/errors.dart
diff --git a/sdk/lib/core/errors.dart b/sdk/lib/core/errors.dart
index 03b2798cfb7311c5e7e24e93e44ddbb19ec7281d..7ce86289ebc5f80a42b5e5def06444527435701a 100644
--- a/sdk/lib/core/errors.dart
+++ b/sdk/lib/core/errors.dart
@@ -88,7 +88,7 @@ class NoSuchMethodError implements Error {
final Object _receiver;
final String _memberName;
final List _arguments;
- final Map<String,Dynamic> _namedArguments;
+ final Map<String,dynamic> _namedArguments;
final List _existingArgumentNames;
/**
@@ -108,7 +108,7 @@ class NoSuchMethodError implements Error {
const NoSuchMethodError(Object this._receiver,
String this._memberName,
List this._arguments,
- Map<String,Dynamic> this._namedArguments,
+ Map<String,dynamic> this._namedArguments,
[List existingArgumentNames = null])
: this._existingArgumentNames = existingArgumentNames;
« no previous file with comments | « sdk/lib/core/collection.dart ('k') | sdk/lib/core/function.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698