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 4cd1201 commit 4e2e017Copy full SHA for 4e2e017
lib/AST/ASTDumper.cpp
@@ -17,6 +17,7 @@
17
#include "swift/AST/ASTContext.h"
18
#include "swift/AST/ASTPrinter.h"
19
#include "swift/AST/ASTVisitor.h"
20
+#include "swift/AST/Attr.h"
21
#include "swift/AST/ClangModuleLoader.h"
22
#include "swift/AST/ForeignAsyncConvention.h"
23
#include "swift/AST/ForeignErrorConvention.h"
@@ -928,6 +929,9 @@ namespace {
928
929
if (P->getAttrs().hasAttribute<NonEphemeralAttr>())
930
OS << " nonEphemeral";
931
932
+ if (P->getAttrs().hasAttribute<NoImplicitCopyAttr>())
933
+ OS << " noImplicitCopy";
934
+
935
if (P->getDefaultArgumentKind() != DefaultArgumentKind::None) {
936
printField("default_arg",
937
getDefaultArgumentKindString(P->getDefaultArgumentKind()));
0 commit comments