2007-11-30 07:05:17 +08:00
|
|
|
//===--- ASTConsumer.cpp - Abstract interface for reading ASTs --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 03:59:25 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-11-30 07:05:17 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the ASTConsumer class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTConsumer.h"
|
2012-10-03 09:58:37 +08:00
|
|
|
#include "clang/AST/Decl.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/DeclGroup.h"
|
2007-11-30 07:05:17 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2011-11-18 08:26:59 +08:00
|
|
|
bool ASTConsumer::HandleTopLevelDecl(DeclGroupRef D) {
|
|
|
|
return true;
|
|
|
|
}
|
2009-03-30 00:50:03 +08:00
|
|
|
|
2010-08-12 02:52:41 +08:00
|
|
|
void ASTConsumer::HandleInterestingDecl(DeclGroupRef D) {
|
|
|
|
HandleTopLevelDecl(D);
|
|
|
|
}
|
2011-10-18 03:48:13 +08:00
|
|
|
|
|
|
|
void ASTConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef D) {}
|
2012-10-03 09:58:37 +08:00
|
|
|
|
|
|
|
void ASTConsumer::HandleImplicitImportDecl(ImportDecl *D) {
|
|
|
|
HandleTopLevelDecl(DeclGroupRef(D));
|
|
|
|
}
|