| OLD | NEW |
| 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; | 5 library source; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import '../../pkg/path/lib/path.dart' as path; | 9 import '../../pkg/pathos/lib/path.dart' as path; |
| 10 | 10 |
| 11 import 'io.dart'; | 11 import 'io.dart'; |
| 12 import 'package.dart'; | 12 import 'package.dart'; |
| 13 import 'pubspec.dart'; | 13 import 'pubspec.dart'; |
| 14 import 'system_cache.dart'; | 14 import 'system_cache.dart'; |
| 15 import 'utils.dart'; | 15 import 'utils.dart'; |
| 16 import 'version.dart'; | 16 import 'version.dart'; |
| 17 | 17 |
| 18 /// A source from which to install packages. | 18 /// A source from which to install packages. |
| 19 /// | 19 /// |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 /// according to [parseDescription], although it must still be serializable | 212 /// according to [parseDescription], although it must still be serializable |
| 213 /// to JSON and YAML. It must also be equal to [id] according to | 213 /// to JSON and YAML. It must also be equal to [id] according to |
| 214 /// [descriptionsEqual]. | 214 /// [descriptionsEqual]. |
| 215 /// | 215 /// |
| 216 /// By default, this just returns [id]. | 216 /// By default, this just returns [id]. |
| 217 Future<PackageId> resolveId(PackageId id) => new Future.immediate(id); | 217 Future<PackageId> resolveId(PackageId id) => new Future.immediate(id); |
| 218 | 218 |
| 219 /// Returns the source's name. | 219 /// Returns the source's name. |
| 220 String toString() => name; | 220 String toString() => name; |
| 221 } | 221 } |
| OLD | NEW |