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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/pubspec.dart

Issue 18356011: Rename "pathos" package to "path". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
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 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698