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

Side by Side Diff: utils/pub/path_source.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/package.dart ('k') | utils/pub/pub.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 path_source; 5 library path_source;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 9
10 import '../../pkg/path/lib/path.dart' as path; 10 import '../../pkg/pathos/lib/path.dart' as path;
11 11
12 import 'io.dart'; 12 import 'io.dart';
13 import 'package.dart'; 13 import 'package.dart';
14 import 'pubspec.dart'; 14 import 'pubspec.dart';
15 import 'version.dart'; 15 import 'version.dart';
16 import 'source.dart'; 16 import 'source.dart';
17 import 'utils.dart'; 17 import 'utils.dart';
18 18
19 // TODO(rnystrom): Support relative paths. (See comment in _validatePath().) 19 // TODO(rnystrom): Support relative paths. (See comment in _validatePath().)
20 /// A package [Source] that installs packages from a given local file path. 20 /// A package [Source] that installs packages from a given local file path.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 throw new FormatException( 101 throw new FormatException(
102 "Path dependency for package '$name' must refer to a " 102 "Path dependency for package '$name' must refer to a "
103 "directory, not a file. Was '$dir'."); 103 "directory, not a file. Was '$dir'.");
104 } 104 }
105 105
106 if (!dirExists(dir)) { 106 if (!dirExists(dir)) {
107 throw new FormatException("Could not find package '$name' at '$dir'."); 107 throw new FormatException("Could not find package '$name' at '$dir'.");
108 } 108 }
109 } 109 }
110 } 110 }
OLDNEW
« no previous file with comments | « utils/pub/package.dart ('k') | utils/pub/pub.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698