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