@@ -272,12 +272,12 @@ struct PrintOptions {
272272
273273 bool SkipSwiftPrivateClangDecls = false ;
274274
275- // / Whether to skip internal stdlib declarations.
276- bool SkipPrivateStdlibDecls = false ;
275+ // / Whether to skip underscored declarations from system modules .
276+ bool SkipPrivateSystemDecls = false ;
277277
278- // / Whether to skip underscored stdlib protocols.
278+ // / Whether to skip underscored protocols from system modules .
279279 // / Protocols marked with @_show_in_interface are still printed.
280- bool SkipUnderscoredStdlibProtocols = false ;
280+ bool SkipUnderscoredSystemProtocols = false ;
281281
282282 // / Whether to skip unsafe C++ class methods that were renamed
283283 // / (e.g. __fooUnsafe). See IsSafeUseOfCxxDecl.
@@ -679,8 +679,8 @@ struct PrintOptions {
679679 result.SkipUnavailable = true ;
680680 result.SkipImplicit = true ;
681681 result.SkipSwiftPrivateClangDecls = true ;
682- result.SkipPrivateStdlibDecls = true ;
683- result.SkipUnderscoredStdlibProtocols = true ;
682+ result.SkipPrivateSystemDecls = true ;
683+ result.SkipUnderscoredSystemProtocols = true ;
684684 result.SkipUnsafeCXXMethods = true ;
685685 result.SkipDeinit = true ;
686686 result.EmptyLineBetweenDecls = true ;
@@ -788,7 +788,7 @@ struct PrintOptions {
788788 PrintOptions::FunctionRepresentationMode::None;
789789 PO.PrintDocumentationComments = false ;
790790 PO.ExcludeAttrList .push_back (DeclAttrKind::Available);
791- PO.SkipPrivateStdlibDecls = true ;
791+ PO.SkipPrivateSystemDecls = true ;
792792 PO.SkipUnsafeCXXMethods = true ;
793793 PO.ExplodeEnumCaseDecls = true ;
794794 PO.ShouldQualifyNestedDeclarations = QualifyNestedDeclarations::TypesOnly;
0 commit comments