| 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 pub.pubspec; |
| 6 | 6 |
| 7 import 'package:yaml/yaml.dart'; | 7 import 'package:yaml/yaml.dart'; |
| 8 import 'package:pathos/path.dart' as path; | 8 import 'package:path/path.dart' as path; |
| 9 | 9 |
| 10 import 'io.dart'; | 10 import 'io.dart'; |
| 11 import 'package.dart'; | 11 import 'package.dart'; |
| 12 import 'source.dart'; | 12 import 'source.dart'; |
| 13 import 'source_registry.dart'; | 13 import 'source_registry.dart'; |
| 14 import 'utils.dart'; | 14 import 'utils.dart'; |
| 15 import 'version.dart'; | 15 import 'version.dart'; |
| 16 | 16 |
| 17 /// The parsed and validated contents of a pubspec file. | 17 /// The parsed and validated contents of a pubspec file. |
| 18 class Pubspec { | 18 class Pubspec { |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 /// The environment-related metadata in the pubspec. Corresponds to the data | 306 /// The environment-related metadata in the pubspec. Corresponds to the data |
| 307 /// under the "environment:" key in the pubspec. | 307 /// under the "environment:" key in the pubspec. |
| 308 class PubspecEnvironment { | 308 class PubspecEnvironment { |
| 309 /// The version constraint specifying which SDK versions this package works | 309 /// The version constraint specifying which SDK versions this package works |
| 310 /// with. | 310 /// with. |
| 311 final VersionConstraint sdkVersion; | 311 final VersionConstraint sdkVersion; |
| 312 | 312 |
| 313 PubspecEnvironment([VersionConstraint sdk]) | 313 PubspecEnvironment([VersionConstraint sdk]) |
| 314 : sdkVersion = sdk != null ? sdk : VersionConstraint.any; | 314 : sdkVersion = sdk != null ? sdk : VersionConstraint.any; |
| 315 } | 315 } |
| OLD | NEW |