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('pub_pubspec'); | 5 #library('pubspec'); |
6 | 6 |
7 #import('io.dart'); | 7 #import('io.dart'); |
8 #import('pub.dart'); | 8 #import('package.dart'); |
9 #import('source.dart'); | 9 #import('source.dart'); |
| 10 #import('source_registry.dart'); |
10 #import('utils.dart'); | 11 #import('utils.dart'); |
11 #import('version.dart'); | 12 #import('version.dart'); |
12 #import('yaml/yaml.dart'); | 13 #import('yaml/yaml.dart'); |
13 | 14 |
14 /** | 15 /** |
15 * The parsed and validated contents of a pubspec file. | 16 * The parsed and validated contents of a pubspec file. |
16 */ | 17 */ |
17 class Pubspec { | 18 class Pubspec { |
18 /** | 19 /** |
19 * This package's version. | 20 * This package's version. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 source.validateDescription(description); | 99 source.validateDescription(description); |
99 | 100 |
100 dependencies.add(new PackageRef( | 101 dependencies.add(new PackageRef( |
101 name, source, Version.none, description)); | 102 name, source, Version.none, description)); |
102 }); | 103 }); |
103 } | 104 } |
104 | 105 |
105 return new Pubspec._(version, dependencies); | 106 return new Pubspec._(version, dependencies); |
106 } | 107 } |
107 } | 108 } |
OLD | NEW |