(
self,
name: str,
command: str,
*args: str
)
| 348 | self.clinic.__dict__[name] = value |
| 349 | |
| 350 | def directive_destination( |
| 351 | self, |
| 352 | name: str, |
| 353 | command: str, |
| 354 | *args: str |
| 355 | ) -> None: |
| 356 | match command: |
| 357 | case "new": |
| 358 | self.clinic.add_destination(name, *args) |
| 359 | case "clear": |
| 360 | self.clinic.get_destination(name).clear() |
| 361 | case _: |
| 362 | fail(f"unknown destination command {command!r}") |
| 363 | |
| 364 | |
| 365 | def directive_output( |
nothing calls this directly
no test coverage detected