(code)
| 822 | // The code will be executed after the runtime `onPostCtors` callbacks. |
| 823 | export const ATPOSTCTORS = []; |
| 824 | function addAtPostCtor(code) { |
| 825 | ATPOSTCTORS.push(code); |
| 826 | } |
| 827 | |
| 828 | // Add code to run right before main is called. This is only available if the |
| 829 | // the Wasm module has a main function. The code will be executed after the |
no test coverage detected