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 2f32a12 commit d9c3719Copy full SHA for d9c3719
lib/AST/ASTPrinter.cpp
@@ -106,6 +106,9 @@ PrintOptions PrintOptions::printParseableInterfaceFile() {
106
result.CollapseSingleGetterProperty = false;
107
result.VarInitializers = true;
108
109
+ // We should print __consuming, __owned, etc for the module interface file.
110
+ result.SkipUnderscoredKeywords = false;
111
+
112
result.FunctionBody = [](const ValueDecl *decl, ASTPrinter &printer) {
113
auto AFD = dyn_cast<AbstractFunctionDecl>(decl);
114
if (!AFD || !AFD->hasInlinableBodyText()) return;
0 commit comments