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 sdk_source; | 5 library sdk_source; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import '../../pkg/path/lib/path.dart' as path; | 9 import '../../pkg/pathos/lib/path.dart' as path; |
10 | 10 |
11 import 'io.dart'; | 11 import 'io.dart'; |
12 import 'package.dart'; | 12 import 'package.dart'; |
13 import 'pubspec.dart'; | 13 import 'pubspec.dart'; |
14 import 'sdk.dart' as sdk; | 14 import 'sdk.dart' as sdk; |
15 import 'source.dart'; | 15 import 'source.dart'; |
16 import 'utils.dart'; | 16 import 'utils.dart'; |
17 import 'version.dart'; | 17 import 'version.dart'; |
18 | 18 |
19 /// A package source that uses libraries from the Dart SDK. | 19 /// A package source that uses libraries from the Dart SDK. |
(...skipping 25 matching lines...) Expand all Loading... |
45 }); | 45 }); |
46 } | 46 } |
47 | 47 |
48 /// Gets the path in the SDK's "pkg" directory to the directory containing | 48 /// Gets the path in the SDK's "pkg" directory to the directory containing |
49 /// package [id]. Returns `null` if the package could not be found. | 49 /// package [id]. Returns `null` if the package could not be found. |
50 String _getPackagePath(PackageId id) { | 50 String _getPackagePath(PackageId id) { |
51 var pkgPath = path.join(sdk.rootDirectory, "pkg", id.description); | 51 var pkgPath = path.join(sdk.rootDirectory, "pkg", id.description); |
52 return dirExists(pkgPath) ? pkgPath : null; | 52 return dirExists(pkgPath) ? pkgPath : null; |
53 } | 53 } |
54 } | 54 } |
OLD | NEW |