(cls)
| 882 | |
| 883 | @classmethod |
| 884 | def variations(cls): |
| 885 | combos = super().variations() |
| 886 | return ([dict(eh_mode=Exceptions.EMSCRIPTEN, **combo) for combo in combos] + |
| 887 | [dict(eh_mode=Exceptions.WASM_LEGACY, **combo) for combo in combos] + |
| 888 | [dict(eh_mode=Exceptions.WASM, **combo) for combo in combos]) |
| 889 | |
| 890 | @classmethod |
| 891 | def get_default_variation(cls, **kwargs): |
nothing calls this directly
no test coverage detected