Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
test/AST/ast-dump-decl.cpp | ||
---|---|---|
330–331 ↗ | (On Diff #177070) | This looks wrong to me. You did not inherit the TemplateTypeParmDecl from above, you inherited the TemplateArgument. The order is important here and should be preserved to avoid confusion. |
test/AST/ast-dump-decl.cpp | ||
---|---|---|
330–331 ↗ | (On Diff #177070) | Should this be dumped as a child of the TemplateArgument then? I can add it as a child in ASTDumper::dumpTemplateArgument. |
test/AST/ast-dump-decl.cpp | ||
---|---|---|
330–331 ↗ | (On Diff #177070) | I kind of think it should. We follow the same pattern in each place -- print the template argument, then print this information, so combining it seems reasonable to me. |