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

Unified Diff: sdk/lib/_internal/pub/lib/src/exit_codes.dart

Issue 23609060: Make stdout and stderr async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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/exit_codes.dart
diff --git a/sdk/lib/_internal/pub/lib/src/exit_codes.dart b/sdk/lib/_internal/pub/lib/src/exit_codes.dart
index 028fd1c97b63f40418dbbd95dbb571c6a183a1f0..d93a412f0772ea7acaba2d60f315aef95a2847ac 100644
--- a/sdk/lib/_internal/pub/lib/src/exit_codes.dart
+++ b/sdk/lib/_internal/pub/lib/src/exit_codes.dart
@@ -9,6 +9,9 @@
/// [manpage]: http://www.freebsd.org/cgi/man.cgi?query=sysexits
library pub.exit_codes;
+import 'dart:io';
+import 'dart:async';
Søren Gjesse 2013/09/24 11:24:22 Accidental edit?
Anders Johnsen 2013/09/24 11:41:56 Done.
+
/// The command was used incorrectly.
final USAGE = 64;

Powered by Google App Engine
This is Rietveld 408576698