| 937 | } |
| 938 | |
| 939 | bool GjsContextPrivate::should_exit(uint8_t* exit_code_p) const { |
| 940 | if (exit_code_p != nullptr) |
| 941 | *exit_code_p = m_exit_code; |
| 942 | return m_should_exit; |
| 943 | } |
| 944 | |
| 945 | void GjsContextPrivate::exit_immediately(uint8_t exit_code) { |
| 946 | warn_about_unhandled_promise_rejections(); |
no outgoing calls
no test coverage detected