(cls, **kwargs)
| 833 | |
| 834 | @classmethod |
| 835 | def get_default_variation(cls, **kwargs): |
| 836 | if settings.WASM_EXCEPTIONS: |
| 837 | if settings.WASM_LEGACY_EXCEPTIONS: |
| 838 | eh_mode = Exceptions.WASM_LEGACY |
| 839 | else: |
| 840 | eh_mode = Exceptions.WASM |
| 841 | elif settings.DISABLE_EXCEPTION_CATCHING == 1: |
| 842 | eh_mode = Exceptions.NONE |
| 843 | else: |
| 844 | eh_mode = Exceptions.EMSCRIPTEN |
| 845 | return super().get_default_variation(eh_mode=eh_mode, **kwargs) |
| 846 | |
| 847 | |
| 848 | class SjLjLibrary(Library): |
nothing calls this directly
no test coverage detected