| Index: utils/pub/root_source.dart
|
| diff --git a/utils/pub/root_source.dart b/utils/pub/root_source.dart
|
| index b1081589376a97e6addac2edb330456d30af14ea..26e948fdfa8e8e71c196e324d56e431144b7827d 100644
|
| --- a/utils/pub/root_source.dart
|
| +++ b/utils/pub/root_source.dart
|
| @@ -5,6 +5,7 @@
|
| #library('root_source');
|
|
|
| #import('package.dart');
|
| +#import('pubspec.dart');
|
| #import('source.dart');
|
|
|
| /**
|
| @@ -21,7 +22,7 @@ class RootSource extends Source {
|
| RootSource(this.package);
|
|
|
| Future<Pubspec> describe(PackageId id) {
|
| - return Future<Pubspec>.immediate(package.pubspec);
|
| + return new Future<Pubspec>.immediate(package.pubspec);
|
| }
|
|
|
| Future<bool> install(PackageId id, String destPath) {
|
|
|