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

Unified Diff: utils/pub/root_source.dart

Issue 12047096: Get rid of RootSource. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: utils/pub/root_source.dart
diff --git a/utils/pub/root_source.dart b/utils/pub/root_source.dart
deleted file mode 100644
index 48499bb0307d8394c4dbd4ce8771ec24c7bdf9a2..0000000000000000000000000000000000000000
--- a/utils/pub/root_source.dart
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library root_source;
-
-import 'dart:async';
-import 'package.dart';
-import 'pubspec.dart';
-import 'source.dart';
-
-/// A source used only for the root package when doing version resolution. It
-/// contains only the root package and is unable to install packages.
-///
-/// This source cannot be referenced from a pubspec.
-class RootSource extends Source {
- final String name = "root";
- final bool shouldCache = false;
- final Package package;
-
- RootSource(this.package);
-
- Future<Pubspec> describe(PackageId id) {
- return new Future<Pubspec>.immediate(package.pubspec);
- }
-
- Future<bool> install(PackageId id, String destPath) {
- throw new UnsupportedError("Can't install from a root source.");
- }
-}
« utils/pub/package.dart ('K') | « utils/pub/package.dart ('k') | utils/pub/sdk.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698