| 619 | |
| 620 | public: |
| 621 | ASTConsumer(std::vector<clang::DeclContext*>& decl_contexts_) |
| 622 | : decl_contexts(decl_contexts_) {} |
| 623 | |
| 624 | void HandleTranslationUnit(clang::ASTContext& context) override { |
| 625 | ASTVisitor {decl_contexts}.TraverseDecl(context.getTranslationUnitDecl()); |
nothing calls this directly
no outgoing calls
no test coverage detected