pasta icon indicating copy to clipboard operation
pasta copied to clipboard

Improve pretty printer for comma-separated VarDecls and FieldDecls

Open pgoodman opened this issue 2 years ago • 0 comments

int a __attribute__((annotate("a"))), b __attribute__((annotate("b")));

In the above, we'll print this roughly as:

int a __attribute__((annotate("a")));
int b __attribute__((annotate("b")))

This affects the algorithm in PrintedTokenRange::AlignTokens.

pgoodman avatar Sep 15 '23 16:09 pgoodman