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

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

Issue 372123002: Get rid of deferred binding for usage errors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/pub/lib/src/command/run.dart
diff --git a/sdk/lib/_internal/pub/lib/src/command/run.dart b/sdk/lib/_internal/pub/lib/src/command/run.dart
index 5d8aaa98da3b6235371d8a5a5cb5e7dbb1f9b5fa..e1f3166b10a4309ceea10876e0fd81eaf72c4df2 100644
--- a/sdk/lib/_internal/pub/lib/src/command/run.dart
+++ b/sdk/lib/_internal/pub/lib/src/command/run.dart
@@ -44,7 +44,7 @@ class RunCommand extends PubCommand {
executable = components[1];
}
- return runExecutable(entrypoint, package, executable, args)
+ return runExecutable(this, entrypoint, package, executable, args)
.then(flushThenExit);
}
}

Powered by Google App Engine
This is Rietveld 408576698