(callbacks)
| 1041 | } |
| 1042 | |
| 1043 | function callRuntimeCallbacks(callbacks) { |
| 1044 | while (callbacks.length > 0) { |
| 1045 | // Pass the module as the first argument. |
| 1046 | callbacks.shift()(Module); |
| 1047 | } |
| 1048 | } |
| 1049 | |
| 1050 | |
| 1051 | /** |
no outgoing calls
no test coverage detected