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

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

Issue 18356011: Rename "pathos" package to "path". (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
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.git; 5 library pub.source.git;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:pathos/path.dart' as path; 9 import 'package:path/path.dart' as path;
10 10
11 import '../git.dart' as git; 11 import '../git.dart' as git;
12 import '../io.dart'; 12 import '../io.dart';
13 import '../log.dart' as log; 13 import '../log.dart' as log;
14 import '../package.dart'; 14 import '../package.dart';
15 import '../source.dart'; 15 import '../source.dart';
16 import '../source_registry.dart'; 16 import '../source_registry.dart';
17 import '../utils.dart'; 17 import '../utils.dart';
18 18
19 /// A package source that installs packages from Git repos. 19 /// A package source that installs packages from Git repos.
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 return description['ref']; 202 return description['ref'];
203 } 203 }
204 204
205 /// Returns [description] if it's a description, or [PackageId.description] if 205 /// Returns [description] if it's a description, or [PackageId.description] if
206 /// it's a [PackageId]. 206 /// it's a [PackageId].
207 _getDescription(description) { 207 _getDescription(description) {
208 if (description is PackageId) return description.description; 208 if (description is PackageId) return description.description;
209 return description; 209 return description;
210 } 210 }
211 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698