Re: [PATCH v3 05/13] qapi/parser: improve detection of '@symbol:' preface

2021-09-30 Thread John Snow
On Thu, Sep 30, 2021 at 4:42 AM Markus Armbruster wrote: > John Snow writes: > > > Leading and trailing whitespace are now discarded, addressing the FIXME > > comment. A new error is raised to detect this accidental case. > > > > Parsing for args sections is left alone here; the 'name' variable

Re: [PATCH v3 05/13] qapi/parser: improve detection of '@symbol:' preface

2021-09-30 Thread Markus Armbruster
John Snow writes: > Leading and trailing whitespace are now discarded, addressing the FIXME > comment. A new error is raised to detect this accidental case. > > Parsing for args sections is left alone here; the 'name' variable is > moved into the only block where it is used. > > Signed-off-by:

[PATCH v3 05/13] qapi/parser: improve detection of '@symbol:' preface

2021-09-29 Thread John Snow
Leading and trailing whitespace are now discarded, addressing the FIXME comment. A new error is raised to detect this accidental case. Parsing for args sections is left alone here; the 'name' variable is moved into the only block where it is used. Signed-off-by: John Snow --- Tangentially