(self: Parser, node: doc.expr)
| 103 | |
| 104 | |
| 105 | def eval_struct_info_proxy(self: Parser, node: doc.expr) -> StructInfoProxy: |
| 106 | try: |
| 107 | annotation = self.eval_expr(node) |
| 108 | return _normalize_struct_info_proxy(annotation) |
| 109 | except Exception as err: # pylint: disable=broad-except |
| 110 | self.report_error(node, err) |
| 111 | raise |
| 112 | |
| 113 | |
| 114 | def eval_struct_info(self: Parser, node: doc.expr, eval_str: bool = False) -> StructInfo: |
no test coverage detected
searching dependent graphs…