/Users/buildslave/jenkins/workspace/coverage/llvm-project/clang/lib/AST/ASTConsumer.cpp
Line | Count | Source |
1 | | //===--- ASTConsumer.cpp - Abstract interface for reading ASTs --*- C++ -*-===// |
2 | | // |
3 | | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | | // See https://llvm.org/LICENSE.txt for license information. |
5 | | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
6 | | // |
7 | | //===----------------------------------------------------------------------===// |
8 | | // |
9 | | // This file defines the ASTConsumer class. |
10 | | // |
11 | | //===----------------------------------------------------------------------===// |
12 | | |
13 | | #include "clang/AST/ASTConsumer.h" |
14 | | #include "clang/AST/Decl.h" |
15 | | #include "clang/AST/DeclGroup.h" |
16 | | using namespace clang; |
17 | | |
18 | 1.17M | bool ASTConsumer::HandleTopLevelDecl(DeclGroupRef D) { |
19 | 1.17M | return true; |
20 | 1.17M | } |
21 | | |
22 | 631k | void ASTConsumer::HandleInterestingDecl(DeclGroupRef D) { |
23 | 631k | HandleTopLevelDecl(D); |
24 | 631k | } |
25 | | |
26 | 45.2k | void ASTConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef D) {} |
27 | | |
28 | 159k | void ASTConsumer::HandleImplicitImportDecl(ImportDecl *D) { |
29 | 159k | HandleTopLevelDecl(DeclGroupRef(D)); |
30 | 159k | } |