(cls, **kwargs)
| 889 | |
| 890 | @classmethod |
| 891 | def get_default_variation(cls, **kwargs): |
| 892 | if settings.SUPPORT_LONGJMP == 'wasm': |
| 893 | if settings.WASM_LEGACY_EXCEPTIONS: |
| 894 | eh_mode = Exceptions.WASM_LEGACY |
| 895 | else: |
| 896 | eh_mode = Exceptions.WASM |
| 897 | else: |
| 898 | eh_mode = Exceptions.EMSCRIPTEN |
| 899 | return super().get_default_variation(eh_mode=eh_mode, **kwargs) |
| 900 | |
| 901 | |
| 902 | class MuslInternalLibrary(Library): |
nothing calls this directly
no test coverage detected