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

Side by Side Diff: sdk/lib/_internal/pub/lib/src/source.dart

Issue 94843002: Unify dart:async and pub/io.dart TimeoutException classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years 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
OLDNEW
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 pub.source; 5 library pub.source;
6 6
7 import 'dart:async' hide TimeoutException; 7 import 'dart:async';
8 8
9 import 'package:path/path.dart' as path; 9 import 'package:path/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 'system_cache.dart'; 14 import 'system_cache.dart';
15 import 'utils.dart'; 15 import 'utils.dart';
16 import 'version.dart'; 16 import 'version.dart';
17 17
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 /// Returns the [Package]s that have been downloaded to the system cache. 265 /// Returns the [Package]s that have been downloaded to the system cache.
266 List<Package> getCachedPackages() { 266 List<Package> getCachedPackages() {
267 if (shouldCache) { 267 if (shouldCache) {
268 throw new UnimplementedError("Source $name must implement this."); 268 throw new UnimplementedError("Source $name must implement this.");
269 } 269 }
270 } 270 }
271 271
272 /// Returns the source's name. 272 /// Returns the source's name.
273 String toString() => name; 273 String toString() => name;
274 } 274 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/oauth2.dart ('k') | sdk/lib/_internal/pub/lib/src/source/git.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698