hello, i am newbie in llvm clang world, some doubts ..
how to modify AST?
is it possible by inheriting RecursiveASTVisitor<MyASTVisitor> and
implementing methods like VisitStmt ,VisitFunctionDecl
or it is there just to traverse AST?
Clang’s AST is considered an immutable data structure.
– Sean Silva