Re: [PATCH v3 59/63] qapi/parser: add undocumented stub members to all_sections

2025-03-11 Thread Markus Armbruster
Markus Armbruster writes: > John Snow writes: > >> This helps simplify the new doc generator if it doesn't have to check >> for undocumented members, it can just blindly operate on a sequence of >> QAPIDoc.Section instances. >> >> NB: If there is no existing 'member' section, these undocumented

Re: [PATCH v3 59/63] qapi/parser: add undocumented stub members to all_sections

2025-03-11 Thread Markus Armbruster
John Snow writes: > This helps simplify the new doc generator if it doesn't have to check > for undocumented members, it can just blindly operate on a sequence of > QAPIDoc.Section instances. > > NB: If there is no existing 'member' section, these undocumented stub > members will be inserted dire

[PATCH v3 59/63] qapi/parser: add undocumented stub members to all_sections

2025-03-10 Thread John Snow
This helps simplify the new doc generator if it doesn't have to check for undocumented members, it can just blindly operate on a sequence of QAPIDoc.Section instances. NB: If there is no existing 'member' section, these undocumented stub members will be inserted directly after the leading section.