| 183 | } |
| 184 | |
| 185 | bool VisitTypedefTypeLoc(clang::TypedefTypeLoc TL) { |
| 186 | clang::SourceRange range = TL.getSourceRange(); |
| 187 | annotator.registerReference(TL.getTypedefNameDecl(), range, Annotator::Typedef, Annotator::Use, |
| 188 | annotator.getTypeRef(TL.getTypedefNameDecl()->getUnderlyingType()), |
| 189 | currentContext); |
| 190 | return true; |
| 191 | } |
| 192 | |
| 193 | bool VisitTagTypeLoc(clang::TagTypeLoc TL) { |
| 194 | clang::SourceRange range = TL.getSourceRange(); |
nothing calls this directly
no test coverage detected