<div dir="ltr">Hi All, <br><br>I am working on a rewriter that needs to replace certain variable declarations. Let me create a simplified example here. Consider the following DeclStmt: <br><br>size_t v, *u = NULL, w = 10;<br><br>In my RecursiveASTVisitor I implement VisitVarDecl, and use the rewriter.replace(SourceRange, ...) API. I create the SourceRange using VarDecl::getLocStart and getLocEnd. But this leads to the whole DeclStmt being replaced even if only want to replace u or w. I tried using the getInnerLocStart, but it leads to the same issue. How should I get the correct start and end locations for each individual VarDecl? <br><br><br>Thanks!<br>-<br>Himanshu<br><div>
</div></div>