(self, *args, **kwargs)
| 96 | @wraps(func) |
| 97 | @no_sanitize('sanitizers do not support WASM_ESM_INTEGRATION') |
| 98 | def decorated(self, *args, **kwargs): |
| 99 | self.setup_esm_integration() |
| 100 | return func(self, *args, **kwargs) |
| 101 | |
| 102 | return decorated |
| 103 |
nothing calls this directly
no test coverage detected