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

Side by Side Diff: utils/pub/lock_file.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/hosted_source.dart ('k') | utils/pub/package.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('lock_file'); 5 #library('lock_file');
6 6
7 #import('dart:json'); 7 #import('dart:json');
8 #import('package.dart'); 8 #import('package.dart');
9 #import('source_registry.dart'); 9 #import('source_registry.dart');
10 #import('utils.dart'); 10 #import('utils.dart');
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 56 }
57 var source = sources[sourceName]; 57 var source = sources[sourceName];
58 58
59 // Parse the description. 59 // Parse the description.
60 if (!spec.containsKey('description')) { 60 if (!spec.containsKey('description')) {
61 throw new FormatException('Package $name is missing a description.'); 61 throw new FormatException('Package $name is missing a description.');
62 } 62 }
63 var description = spec['description']; 63 var description = spec['description'];
64 source.validateDescription(description, fromLockFile: true); 64 source.validateDescription(description, fromLockFile: true);
65 65
66 var id = new PackageId(source, version, description); 66 var id = new PackageId(name, source, version, description);
67 67
68 // Validate the name. 68 // Validate the name.
69 if (name != id.name) { 69 if (name != id.name) {
70 throw new FormatException( 70 throw new FormatException(
71 "Package name $name doesn't match ${id.name}."); 71 "Package name $name doesn't match ${id.name}.");
72 } 72 }
73 73
74 packages[name] = id; 74 packages[name] = id;
75 }); 75 });
76 } 76 }
(...skipping 12 matching lines...) Expand all
89 'source': id.source.name, 89 'source': id.source.name,
90 'description': id.description 90 'description': id.description
91 }; 91 };
92 }); 92 });
93 93
94 // TODO(nweiz): Serialize using the YAML library once it supports 94 // TODO(nweiz): Serialize using the YAML library once it supports
95 // serialization. For now, we use JSON, since it's a subset of YAML anyway. 95 // serialization. For now, we use JSON, since it's a subset of YAML anyway.
96 return JSON.stringify({'packages': packagesObj}); 96 return JSON.stringify({'packages': packagesObj});
97 } 97 }
98 } 98 }
OLDNEW
« no previous file with comments | « utils/pub/hosted_source.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698