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

Side by Side Diff: utils/pub/pubspec.dart

Issue 10938003: Don't extract the name of a package from its description. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/source.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('pubspec'); 5 #library('pubspec');
6 6
7 #import('package.dart'); 7 #import('package.dart');
8 #import('source.dart'); 8 #import('source.dart');
9 #import('source_registry.dart'); 9 #import('source_registry.dart');
10 #import('utils.dart'); 10 #import('utils.dart');
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 source = sources[sourceName]; 104 source = sources[sourceName];
105 description = spec[sourceName]; 105 description = spec[sourceName];
106 } else { 106 } else {
107 throw new FormatException( 107 throw new FormatException(
108 'Dependency specification $spec must be a string or a mapping.'); 108 'Dependency specification $spec must be a string or a mapping.');
109 } 109 }
110 110
111 source.validateDescription(description, fromLockFile: false); 111 source.validateDescription(description, fromLockFile: false);
112 112
113 var nameFromSource = source.packageName(description);
114 if (nameFromSource != name) {
115 throw new FormatException('The name you specified for your '
116 'dependency, "$name", doesn\'t match the name "$nameFromSource" '
117 '(from "$description").');
118 }
119
120 dependencies.add(new PackageRef( 113 dependencies.add(new PackageRef(
121 source, versionConstraint, description)); 114 name, source, versionConstraint, description));
122 }); 115 });
123 } 116 }
124 117
125 return new Pubspec(name, version, dependencies); 118 return new Pubspec(name, version, dependencies);
126 } 119 }
127 } 120 }
OLDNEW
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698