Previously, these methods were available for looking up comments:
- getCommentForDecl: returns a FullComment attached to a decl, or any of its redecls, or any of its bases.
- getRawCommentForAnyRedecl: returns a RawComment attached to a decl, or any of its redecls.
- getLocalCommentForDeclUncached: returns a FullComment attached to a decl, but also doesn't update the internal cache.
This change reorganizes into these methods:
- getRawCommentForDecl: returns a RawComment attached to a decl (and nowhere else).
- getRawCommentForAnyRedecl: as before.
- getParsedCommentForAnyRedecl: previously called getCommentForDecl.
- getParsedCommentForDeclUncached: previously getLocalCommentFor....