(cls)
| 736 | |
| 737 | @classmethod |
| 738 | def variations(cls): |
| 739 | combos = super().variations() |
| 740 | |
| 741 | # These are mutually exclusive, only one flag will be set at any give time. |
| 742 | return [combo for combo in combos if not combo['is_mt'] or not combo['is_ww']] |
| 743 | |
| 744 | def can_build(self): |
| 745 | # Wasm workers do not support dynamic linking. |
nothing calls this directly
no test coverage detected