Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #ifndef RUNTIME_BIN_ERROR_EXIT_H_ | |
| 6 #define RUNTIME_BIN_ERROR_EXIT_H_ | |
| 7 | |
| 8 #include "bin/log.h" | |
|
zra
2017/02/10 15:42:34
Probably don't need all these includes here anymor
rmacnak
2017/02/13 19:17:03
Done.
| |
| 9 #include "bin/platform.h" | |
| 10 #include "bin/process.h" | |
| 11 #include "bin/eventhandler.h" | |
| 12 #include "include/dart_api.h" | |
| 13 #include "platform/assert.h" | |
| 14 #include "platform/globals.h" | |
| 15 | |
| 16 namespace dart { | |
| 17 namespace bin { | |
| 18 | |
| 19 // Exit code indicating an internal Dart Frontend error. | |
| 20 static const int kDartFrontendErrorExitCode = 252; | |
| 21 // Exit code indicating an API error. | |
| 22 static const int kApiErrorExitCode = 253; | |
| 23 // Exit code indicating a compilation error. | |
| 24 static const int kCompilationErrorExitCode = 254; | |
| 25 // Exit code indicating an unhandled error that is not a compilation error. | |
| 26 static const int kErrorExitCode = 255; | |
| 27 // Exit code indicating a vm restart request. Never returned to the user. | |
| 28 static const int kRestartRequestExitCode = 1000; | |
| 29 | |
| 30 void ErrorExit(int exit_code, const char* format, ...); | |
| 31 | |
| 32 } // namespace bin | |
| 33 } // namespace dart | |
| 34 | |
| 35 #endif // RUNTIME_BIN_ERROR_EXIT_H_ | |
| OLD | NEW |