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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart

Issue 11665004: Add exitCode setter to set the exit code returned by the Dart VM (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Actually upload the correct patch Created 8 years 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/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index dd17e1b2235273c14f7478aabfcd9f960974cb2a..f2bab1bc9575ab6f5162db505d08402475d7fdb0 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -144,6 +144,9 @@ patch class _ProcessUtils {
patch static _exit(int status) {
throw new UnsupportedError("ProcessUtils._exit");
}
+ patch static _setExitCode(int status) {
+ throw new UnsupportedError("ProcessUtils._setExitCode");
+ }
}
patch class Process {

Powered by Google App Engine
This is Rietveld 408576698