(self)
| 338 | """Manager for toolchain selection and configuration.""" |
| 339 | |
| 340 | def __init__(self): |
| 341 | self.toolchains: Dict[str, Toolchain] = {} |
| 342 | self.current_toolchain: Optional[Toolchain] = None |
| 343 | self._register_default_toolchains() |
| 344 | |
| 345 | def _register_default_toolchains(self) -> None: |
| 346 | """Register default toolchains.""" |
nothing calls this directly
no test coverage detected