[PATCH] D34329: [GSoC] Clang AST diffing
Manuel Klimek via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 20 00:16:54 PDT 2017
klimek added inline comments.
================
Comment at: include/clang/Tooling/ASTDiff/ASTDiff.h:123
+
+void runDiff(ASTContext &AST1, ASTContext &AST2);
+
----------------
This is the main exposed interface?
Generally, if all we want to do is printing, I wouldn't put that into a library in Tooling, but just implement a tools/ASTDiffer or somesuch.
If you want to make this a library, it should return the diff in some form that's nice to use (or print).
https://reviews.llvm.org/D34329
More information about the cfe-commits
mailing list