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

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

Issue 10442023: Get rid of #source in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to (verbal) review. Created 8 years, 7 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/source.dart ('k') | utils/pub/system_cache.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('source_registry');
6
7 #import('source.dart');
8
5 /** 9 /**
6 * A class that keeps track of [Source]s used for installing packages. 10 * A class that keeps track of [Source]s used for installing packages.
7 */ 11 */
8 class SourceRegistry { 12 class SourceRegistry {
9 final Map<String, Source> _map; 13 final Map<String, Source> _map;
10 Source _default; 14 Source _default;
11 15
12 /** 16 /**
13 * Creates a new registry with no packages registered. 17 * Creates a new registry with no packages registered.
14 */ 18 */
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 Source operator[](String name) { 56 Source operator[](String name) {
53 if (name == null) { 57 if (name == null) {
54 if (defaultSource != null) return defaultSource; 58 if (defaultSource != null) return defaultSource;
55 // TODO(nweiz): Real error-handling system 59 // TODO(nweiz): Real error-handling system
56 throw 'No default source has been registered'; 60 throw 'No default source has been registered';
57 } 61 }
58 if (_map.containsKey(name)) return _map[name]; 62 if (_map.containsKey(name)) return _map[name];
59 throw 'No source named $name is registered'; 63 throw 'No source named $name is registered';
60 } 64 }
61 } 65 }
OLDNEW
« no previous file with comments | « utils/pub/source.dart ('k') | utils/pub/system_cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698