(self)
| 368 | final_argument_whitespace = True |
| 369 | |
| 370 | def run(self) -> list[nodes.Node]: |
| 371 | state = self.env.domaindata["c_annotations"] |
| 372 | content = [ |
| 373 | f"* :c:{record.role}:`{record.name}`" |
| 374 | for record in state["stable_abi_data"].values() |
| 375 | ] |
| 376 | node = nodes.paragraph() |
| 377 | self.state.nested_parse(StringList(content), 0, node) |
| 378 | return [node] |
| 379 | |
| 380 | |
| 381 | class CorrespondingTypeSlot(SphinxDirective): |