| 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 pubspec; | 5 library pubspec; | 
| 6 | 6 | 
| 7 import '../../pkg/yaml/lib/yaml.dart'; | 7 import '../../pkg/yaml/lib/yaml.dart'; | 
| 8 import '../../pkg/path/lib/path.dart' as path; | 8 import '../../pkg/pathos/lib/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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 252 /// The environment-related metadata in the pubspec. Corresponds to the data | 252 /// The environment-related metadata in the pubspec. Corresponds to the data | 
| 253 /// under the "environment:" key in the pubspec. | 253 /// under the "environment:" key in the pubspec. | 
| 254 class PubspecEnvironment { | 254 class PubspecEnvironment { | 
| 255   /// The version constraint specifying which SDK versions this package works | 255   /// The version constraint specifying which SDK versions this package works | 
| 256   /// with. | 256   /// with. | 
| 257   final VersionConstraint sdkVersion; | 257   final VersionConstraint sdkVersion; | 
| 258 | 258 | 
| 259   PubspecEnvironment([VersionConstraint sdk]) | 259   PubspecEnvironment([VersionConstraint sdk]) | 
| 260       : sdkVersion = sdk != null ? sdk : VersionConstraint.any; | 260       : sdkVersion = sdk != null ? sdk : VersionConstraint.any; | 
| 261 } | 261 } | 
| OLD | NEW | 
|---|