[PATCH] D53810: [analyzer][NFC] Refactor PlistDiagnostics to use a class instead of passing 9 parameters around
Umann Kristóf via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 29 12:41:33 PDT 2018
Szelethus added inline comments.
================
Comment at: lib/StaticAnalyzer/Core/PlistDiagnostics.cpp:82
-static void EmitRanges(raw_ostream &o,
- const ArrayRef<SourceRange> Ranges,
- const FIDMap& FM,
- const Preprocessor &PP,
- unsigned indent) {
+ void ReportDiag(raw_ostream &o, const PathDiagnosticPiece& P) {
+ ReportPiece(o, P, /*indent*/ 4, /*depth*/ 0, /*includeControlFlow*/ true);
----------------
NoQ wrote:
> Szelethus wrote:
> > xazax.hun wrote:
> > > The `raw_ostream` seems to be a common argument. MAybe it would be worth to make that a member too?
> > I did that, and then later changed it back for debugging purposes, if anyone needs to print note pieces to errs or something.
> I guess both problems could be solved by doing a private method `raw_ostream` while also wrapping it into a public method with a default `raw_ostream`.
I think that would add unnecessary complication for very little value. I'd rather commit as is.
https://reviews.llvm.org/D53810
More information about the cfe-commits
mailing list