We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a59e909 + 63f0697 commit d17b767Copy full SHA for d17b767
lib/AST/ASTDumper.cpp
@@ -773,7 +773,9 @@ namespace {
773
void visitSourceFile(const SourceFile &SF) {
774
OS.indent(Indent);
775
PrintWithColorRAII(OS, ParenthesisColor) << '(';
776
- PrintWithColorRAII(OS, ASTNodeColor) << "source_file";
+ PrintWithColorRAII(OS, ASTNodeColor) << "source_file ";
777
+ PrintWithColorRAII(OS, LocationColor) << '\"' << SF.getFilename() << '\"';
778
+
779
for (Decl *D : SF.Decls) {
780
if (D->isImplicit())
781
continue;
0 commit comments