(code)
| 815 | // runtime `onInits` callbacks. |
| 816 | export const ATINITS = []; |
| 817 | function addAtInit(code) { |
| 818 | ATINITS.push(code); |
| 819 | } |
| 820 | |
| 821 | // Add code to run after static constructors, but before main (if applicable). |
| 822 | // The code will be executed after the runtime `onPostCtors` callbacks. |
no test coverage detected