* Async-aware startup initializer * Called automatically when the WASM module loads */
| 168 | * Called automatically when the WASM module loads |
| 169 | */ |
| 170 | __attribute__((constructor)) |
| 171 | void on_startup_initialize_wasm_ui() { |
| 172 | FL_WARN("*** ASYNC WASM UI STARTUP INITIALIZER CALLED ***"); |
| 173 | ensureWasmUiSystemInitialized(); |
| 174 | } |
| 175 | |
| 176 | } // namespace fl |
| 177 |
nothing calls this directly
no test coverage detected