Use qualified names if available.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
lib/Tooling/ASTDiff/ASTDiff.cpp | ||
---|---|---|
395 ↗ | (On Diff #109309) | Usually we use the initial letter of the type that we now have: |
test/Tooling/clang-diff-ast.cpp | ||
32 ↗ | (On Diff #109309) | For my curiosity: why are there semicolons here? Is the format documented somewhere? |
test/Tooling/clang-diff-ast.cpp | ||
---|---|---|
32 ↗ | (On Diff #109309) | To avoid collisions (the value should be unique per TypedefDecl in this example), the second one is unnecessary I guess. It is not documented, If it works out I want to move to StmtDataCollector for node comparison and keep these just for visualisation / debugging. |
lib/Tooling/ASTDiff/ASTDiff.cpp | ||
---|---|---|
428 ↗ | (On Diff #109426) | It looks like you're doing a lot of work for constructors here, but I don't seem them tested in this patch. |