Re: [PATCH v2 1/7] qapi/expr: Split check_expr out from check_exprs

2023-02-08 Thread Markus Armbruster
John Snow writes: > Primarily, this reduces a nesting level of a particularly long > block. It's mostly code movement, but a new docstring is created. > > It also has the effect of creating a fairly convenient "catch point" in > check_exprs for exception handling without making the nesting level

[PATCH v2 1/7] qapi/expr: Split check_expr out from check_exprs

2023-02-07 Thread John Snow
Primarily, this reduces a nesting level of a particularly long block. It's mostly code movement, but a new docstring is created. It also has the effect of creating a fairly convenient "catch point" in check_exprs for exception handling without making the nesting level even worse. Signed-off-by: J