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

Unified Diff: pkg/path/lib/path.dart

Issue 12086062: Rename mappedBy to map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Undo change to test-script. Created 7 years, 11 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
« no previous file with comments | « pkg/oauth2/lib/src/utils.dart ('k') | pkg/serialization/lib/src/basic_rule.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/path/lib/path.dart
diff --git a/pkg/path/lib/path.dart b/pkg/path/lib/path.dart
index 854d4da3f5d48f2c9757730de4657282facc889a..3bd23323b0345de558047b114a62a37f92c7b83b 100644
--- a/pkg/path/lib/path.dart
+++ b/pkg/path/lib/path.dart
@@ -179,7 +179,7 @@ _validateArgList(String method, List<String> args) {
var message = new StringBuffer();
message.add("$method(");
message.add(args.take(numArgs)
- .mappedBy((arg) => arg == null ? "null" : '"$arg"')
+ .map((arg) => arg == null ? "null" : '"$arg"')
.join(", "));
message.add("): part ${i - 1} was null, but part $i was not.");
throw new ArgumentError(message.toString());
« no previous file with comments | « pkg/oauth2/lib/src/utils.dart ('k') | pkg/serialization/lib/src/basic_rule.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698