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

Side by Side Diff: utils/pub/pubspec.dart

Issue 12316056: Move pkg/path to pkg/pathos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/sdk.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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 }
OLDNEW
« no previous file with comments | « utils/pub/pub.dart ('k') | utils/pub/sdk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698