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

Unified Diff: utils/pub/io.dart

Issue 10869033: Update pub to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index e9c19f9383521efa4a3cc0307b1f0559057410f3..e3fc8e0202c4b84edcfc59abe54584009037bf9d 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -11,7 +11,7 @@
#import('dart:uri');
/** Gets the current working directory. */
-String get workingDir() => new File('.').fullPathSync();
+String get workingDir => new File('.').fullPathSync();
/**
* Prints the given string to `stderr` on its own line.
@@ -405,7 +405,7 @@ Future<PubProcessResult> runProcess(String executable, List<String> args,
/**
* Tests whether or not the git command-line app is available for use.
*/
-Future<bool> get isGitInstalled() {
+Future<bool> get isGitInstalled {
// TODO(rnystrom): We could cache this after the first check. We aren't right
// now because Future.immediate() will invoke its callback synchronously.
// That does bad things in cases where the caller expects futures to always
@@ -460,7 +460,7 @@ class PubProcessResult {
const PubProcessResult(this.stdout, this.stderr, this.exitCode);
- bool get success() => exitCode == 0;
+ bool get success => exitCode == 0;
}
/**
« no previous file with comments | « utils/pub/entrypoint.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698