| 131 | |
| 132 | #ifdef __EMSCRIPTEN__ |
| 133 | void main_loop() |
| 134 | { |
| 135 | if (!testCases.empty()) |
| 136 | { |
| 137 | run_one(); |
| 138 | } |
| 139 | else |
| 140 | { |
| 141 | emscripten_cancel_main_loop(); |
| 142 | print_results(); |
| 143 | } |
| 144 | } |
| 145 | #endif |
| 146 | |
| 147 | #ifndef MAX_COPY |
nothing calls this directly
no test coverage detected