| 139 | return true; |
| 140 | } |
| 141 | bool VisitFieldDecl(clang::FieldDecl *d) { |
| 142 | annotator.registerReference(d, d->getLocation(), Annotator::Decl, Annotator::Declaration, |
| 143 | annotator.getTypeRef(d->getType())); |
| 144 | return true; |
| 145 | } |
| 146 | |
| 147 | bool VisitMemberExpr(clang::MemberExpr *e) { |
| 148 | auto range = e->getMemberNameInfo().getSourceRange(); |
nothing calls this directly
no test coverage detected