[SourceKit] Surface group names via cursor info query.

This commit is contained in:
Xi Ge
2016-02-05 16:16:49 -08:00
parent 33b4de7ff6
commit a25551e54d
14 changed files with 54 additions and 1 deletions

View File

@@ -489,6 +489,11 @@ SerializedASTFile::getCommentForDecl(const Decl *D) const {
return File.getCommentForDecl(D);
}
Optional<StringRef>
SerializedASTFile::getGroupNameForDecl(const Decl *D) const {
return File.getGroupNameForDecl(D);
}
void
SerializedASTFile::getTopLevelDecls(SmallVectorImpl<Decl*> &results) const {
File.getTopLevelDecls(results);