mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
[SymbolGraphGen] allow SourceKit to print declarations for private stdlib symbols (#64556)
Resolves rdar://103112656 Resolves #62457
This commit is contained in:
@@ -63,8 +63,8 @@ PrintOptions SymbolGraph::getDeclarationFragmentsPrintOptions() const {
|
||||
Opts.PrintFunctionRepresentationAttrs =
|
||||
PrintOptions::FunctionRepresentationMode::None;
|
||||
Opts.PrintUserInaccessibleAttrs = false;
|
||||
Opts.SkipPrivateStdlibDecls = true;
|
||||
Opts.SkipUnderscoredStdlibProtocols = true;
|
||||
Opts.SkipPrivateStdlibDecls = !Walker.Options.PrintPrivateStdlibSymbols;
|
||||
Opts.SkipUnderscoredStdlibProtocols = !Walker.Options.PrintPrivateStdlibSymbols;
|
||||
Opts.PrintGenericRequirements = true;
|
||||
Opts.PrintInherited = false;
|
||||
Opts.ExplodeEnumCaseDecls = true;
|
||||
|
||||
Reference in New Issue
Block a user