Goto label on error.
| 175 | |
| 176 | |
| 177 | class GotoHandler(ErrorHandler): |
| 178 | """Goto label on error.""" |
| 179 | |
| 180 | def __init__(self, label: str) -> None: |
| 181 | self.label = label |
| 182 | |
| 183 | |
| 184 | class TracebackAndGotoHandler(ErrorHandler): |
no outgoing calls
no test coverage detected
searching dependent graphs…