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

Unified Diff: sdk/lib/_internal/pub/lib/src/command/global_run.dart

Issue 514853003: Hook async/await compiler into pub and use it. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise! Created 6 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 | « sdk/lib/_internal/pub/lib/src/command/build.dart ('k') | sdk/lib/_internal/pub/lib/src/command/run.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/pub/lib/src/command/global_run.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/global_run.dart b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
index d0f35ba70af58aaaf3b117f71c3343d1fc34ecc5..86eb30bcae1ebd7975633facd7c66f8fb4e83aae 100644
--- a/sdk/lib/_internal/pub/lib/src/command/global_run.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/global_run.dart
@@ -20,7 +20,7 @@ class GlobalRunCommand extends PubCommand {
"NOTE: We are currently optimizing this command's startup time.";
String get usage => "pub global run <package>:<executable> [args...]";
- Future onRun() {
+ Future onRun() async {
if (commandOptions.rest.isEmpty) {
usageError("Must specify an executable to run.");
}
@@ -38,9 +38,9 @@ class GlobalRunCommand extends PubCommand {
var args = commandOptions.rest.skip(1).toList();
- return globals.find(package).then((entrypoint) {
- return runExecutable(this, entrypoint, package, executable, args,
- isGlobal: true);
- }).then(flushThenExit);
+ var entrypoint = await globals.find(package);
+ var exitCode = await runExecutable(this, entrypoint, package, executable,
+ args, isGlobal: true);
+ await flushThenExit(exitCode);
}
}
« no previous file with comments | « sdk/lib/_internal/pub/lib/src/command/build.dart ('k') | sdk/lib/_internal/pub/lib/src/command/run.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698