(func)
| 206 | |
| 207 | |
| 208 | def with_both_compilers(func): |
| 209 | assert callable(func) |
| 210 | |
| 211 | parameterize(func, {'': (EMCC,), |
| 212 | 'emxx': (EMXX,)}) |
| 213 | return func |
| 214 | |
| 215 | |
| 216 | def wasmfs_all_backends(func): |
nothing calls this directly
no test coverage detected