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

Unified Diff: utils/pub/git_source.dart

Issue 11267018: Make getKeys, getValues getters (keys, values). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. Created 8 years, 2 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 | « utils/peg/pegparser.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/git_source.dart
diff --git a/utils/pub/git_source.dart b/utils/pub/git_source.dart
index 46ec7d232dbeaeee48c0b1067cf0dd9243876cdb..6327638d93ba54925cc3da600db4e351cab060dc 100644
--- a/utils/pub/git_source.dart
+++ b/utils/pub/git_source.dart
@@ -80,7 +80,7 @@ class GitSource extends Source {
if (!description.isEmpty) {
var plural = description.length > 1;
- var keys = Strings.join(description.getKeys(), ', ');
+ var keys = Strings.join(description.keys, ', ');
throw new FormatException("Invalid key${plural ? 's' : ''}: $keys.");
}
}
« no previous file with comments | « utils/peg/pegparser.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698