(code)
| 838 | // set. The code will be executed after the runtime `onExits` callbacks. |
| 839 | export const ATEXITS = []; |
| 840 | function addAtExit(code) { |
| 841 | if (EXIT_RUNTIME) { |
| 842 | ATEXITS.push(code); |
| 843 | } |
| 844 | } |
| 845 | |
| 846 | // Add code to run after main and ATEXITS (if applicable). The code will be |
| 847 | // executed after the runtime `onPostRuns` callbacks. |
no test coverage detected