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

Side by Side Diff: utils/pub/package.dart

Issue 12316056: Move pkg/path to pkg/pathos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/pub/path_source.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 package; 5 library package;
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 'pubspec.dart'; 12 import 'pubspec.dart';
13 import 'source.dart'; 13 import 'source.dart';
14 import 'source_registry.dart'; 14 import 'source_registry.dart';
15 import 'version.dart'; 15 import 'version.dart';
16 16
17 final _README_REGEXP = new RegExp(r"^README($|\.)", caseSensitive: false); 17 final _README_REGEXP = new RegExp(r"^README($|\.)", caseSensitive: false);
18 18
19 /// A named, versioned, unit of code and resource reuse. 19 /// A named, versioned, unit of code and resource reuse.
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 206
207 class PubspecNameMismatchException implements Exception { 207 class PubspecNameMismatchException implements Exception {
208 final String expectedName; 208 final String expectedName;
209 final String actualName; 209 final String actualName;
210 210
211 PubspecNameMismatchException(this.expectedName, this.actualName); 211 PubspecNameMismatchException(this.expectedName, this.actualName);
212 212
213 String toString() => 'The name you specified for your dependency, ' 213 String toString() => 'The name you specified for your dependency, '
214 '"$expectedName", doesn\'t match the name "$actualName" in its pubspec.'; 214 '"$expectedName", doesn\'t match the name "$actualName" in its pubspec.';
215 } 215 }
OLDNEW
« no previous file with comments | « utils/pub/oauth2.dart ('k') | utils/pub/path_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698