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.
1 parent f72b213 commit db07476Copy full SHA for db07476
lib/AST/ASTDumper.cpp
@@ -412,7 +412,7 @@ namespace {
412
if (KindString)
413
OS << " kind=" << KindString;
414
415
- OS << " ";
+ OS << " '";
416
interleave(ID->getFullAccessPath(),
417
[&](const ImportDecl::AccessPathElement &Elem) {
418
OS << Elem.first;
@@ -442,7 +442,7 @@ namespace {
442
443
void visitTypeAliasDecl(TypeAliasDecl *TAD) {
444
printCommon(TAD, "typealias");
445
- OS << " type=";
+ OS << " type='";
446
if (TAD->hasUnderlyingType())
447
OS << TAD->getUnderlyingType().getString();
448
else
0 commit comments