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

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

Issue 10442023: Get rid of #source in pub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to (verbal) review. Created 8 years, 7 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/git_source.dart ('k') | utils/pub/package.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 /** 5 /**
6 * Helper functionality to make working with IO easier. 6 * Helper functionality to make working with IO easier.
7 */ 7 */
8 #library('pub_io'); 8 #library('io');
9 9
10 #import('dart:io'); 10 #import('dart:io');
11 11
12 /** Gets the current working directory. */ 12 /** Gets the current working directory. */
13 String get workingDir() => new File('.').fullPathSync(); 13 String get workingDir() => new File('.').fullPathSync();
14 14
15 /** 15 /**
16 * Prints the given string to `stderr` on its own line. 16 * Prints the given string to `stderr` on its own line.
17 */ 17 */
18 void printError(value) { 18 void printError(value) {
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 } 382 }
383 383
384 /** 384 /**
385 * Gets a [Directory] for [entry], which can either already be one, or be a 385 * Gets a [Directory] for [entry], which can either already be one, or be a
386 * [String]. 386 * [String].
387 */ 387 */
388 Directory _getDirectory(entry) { 388 Directory _getDirectory(entry) {
389 if (entry is Directory) return entry; 389 if (entry is Directory) return entry;
390 return new Directory(entry); 390 return new Directory(entry);
391 } 391 }
OLDNEW
« no previous file with comments | « utils/pub/git_source.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698