Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tools/SourceKit/include/SourceKit/Core/LangSupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,9 @@ struct CursorSymbolInfo {
StringRef TypeName;
StringRef TypeUSR;
StringRef ContainerTypeUSR;
StringRef TypeDeclUSR;
LocationInfo TypeDeclLocation;
StringRef TypeDeclModuleName;
StringRef DocComment;
StringRef DocCommentAsXML;
StringRef GroupName;
Expand Down Expand Up @@ -666,6 +669,9 @@ struct CursorSymbolInfo {
OS << Indentation << " TypeName: " << TypeName << '\n';
OS << Indentation << " TypeUSR: " << TypeUSR << '\n';
OS << Indentation << " ContainerTypeUSR: " << ContainerTypeUSR << '\n';
OS << Indentation << " TypeDeclUSR: " << TypeDeclUSR << '\n';
TypeDeclLocation.print(OS, Indentation + " TypeDecl");
OS << Indentation << " TypeDeclModuleName: " << TypeDeclModuleName << '\n';
OS << Indentation << " DocComment: " << DocComment << '\n';
OS << Indentation << " DocCommentAsXML: " << DocCommentAsXML << '\n';
OS << Indentation << " GroupName: " << GroupName << '\n';
Expand Down
Loading