(self: "Parser", node: doc.AST)
| 332 | |
| 333 | def _dispatch_wrapper(func: dispatch.ParseMethod) -> dispatch.ParseMethod: |
| 334 | def _wrapper(self: "Parser", node: doc.AST) -> None: |
| 335 | try: |
| 336 | return func(self, node) |
| 337 | except Exception as err: # pylint: disable=broad-except |
| 338 | self.report_error(node, err) |
| 339 | raise |
| 340 | |
| 341 | return _wrapper |
| 342 |
nothing calls this directly
no test coverage detected
searching dependent graphs…