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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/peg/pegparser.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library git_source; 5 library git_source;
6 6
7 import 'git.dart' as git; 7 import 'git.dart' as git;
8 import 'io.dart'; 8 import 'io.dart';
9 import 'package.dart'; 9 import 'package.dart';
10 import 'source.dart'; 10 import 'source.dart';
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 throw new FormatException("The description must be a Git URL or a map " 73 throw new FormatException("The description must be a Git URL or a map "
74 "with a 'url' key."); 74 "with a 'url' key.");
75 } 75 }
76 description = new Map.from(description); 76 description = new Map.from(description);
77 description.remove('url'); 77 description.remove('url');
78 description.remove('ref'); 78 description.remove('ref');
79 if (fromLockFile) description.remove('resolved-ref'); 79 if (fromLockFile) description.remove('resolved-ref');
80 80
81 if (!description.isEmpty) { 81 if (!description.isEmpty) {
82 var plural = description.length > 1; 82 var plural = description.length > 1;
83 var keys = Strings.join(description.getKeys(), ', '); 83 var keys = Strings.join(description.keys, ', ');
84 throw new FormatException("Invalid key${plural ? 's' : ''}: $keys."); 84 throw new FormatException("Invalid key${plural ? 's' : ''}: $keys.");
85 } 85 }
86 } 86 }
87 87
88 /** 88 /**
89 * Two Git descriptions are equal if both their URLs and their refs are equal. 89 * Two Git descriptions are equal if both their URLs and their refs are equal.
90 */ 90 */
91 bool descriptionsEqual(description1, description2) { 91 bool descriptionsEqual(description1, description2) {
92 // TODO(nweiz): Do we really want to throw an error if you have two 92 // TODO(nweiz): Do we really want to throw an error if you have two
93 // dependencies on some repo, one of which specifies a ref and one of which 93 // dependencies on some repo, one of which specifies a ref and one of which
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 217
218 /** 218 /**
219 * Returns [description] if it's a description, or [PackageId.description] if 219 * Returns [description] if it's a description, or [PackageId.description] if
220 * it's a [PackageId]. 220 * it's a [PackageId].
221 */ 221 */
222 _getDescription(description) { 222 _getDescription(description) {
223 if (description is PackageId) return description.description; 223 if (description is PackageId) return description.description;
224 return description; 224 return description;
225 } 225 }
226 } 226 }
OLDNEW
« 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