(source)
| 100 | f'{compound_leading or ""} {compound_kind} {name}', |
| 101 | ) |
| 102 | def parse_body(source): |
| 103 | _parse_body = DECL_BODY_PARSERS[compound_kind] |
| 104 | |
| 105 | data = [] # members |
| 106 | ident = f'{kind} {name}' |
| 107 | for item in _parse_body(source, anon_name, ident): |
| 108 | if item.kind == 'field': |
| 109 | data.append(item) |
| 110 | else: |
| 111 | yield item |
| 112 | # XXX Should "parent" really be None for inline type decls? |
| 113 | yield srcinfo.resolve(kind, data, name, parent=None) |
| 114 | |
| 115 | srcinfo.resume() |
| 116 | yield parse_body |
| 117 | |
| 118 | elif typedef_decl: |
no test coverage detected
searching dependent graphs…