| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |