| 194 | } |
| 195 | |
| 196 | virtual bool shouldSkipFunctionBody(clang::Decl *D) override { |
| 197 | return !annotator.shouldProcess( |
| 198 | clang::FullSourceLoc(D->getLocation(),annotator.getSourceMgr()) |
| 199 | .getExpansionLoc().getFileID()); |
| 200 | } |
| 201 | }; |
| 202 | |
| 203 | class BrowserAction : public clang::ASTFrontendAction { |
nothing calls this directly
no test coverage detected