Modified dumping of Decl information to including the Decl type.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41796 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2007-09-10 17:32:55 +00:00
Родитель 498b0d1aba
Коммит eb641f9995
1 изменённых файлов: 19 добавлений и 2 удалений

Просмотреть файл

@ -256,8 +256,25 @@ void StmtDumper::VisitExpr(Expr *Node) {
void StmtDumper::VisitDeclRefExpr(DeclRefExpr *Node) {
DumpExpr(Node);
fprintf(F, " Decl='%s' %p", Node->getDecl()->getName(),
(void*)Node->getDecl());
fprintf(F, " ");
switch (Node->getDecl()->getKind()) {
case Decl::Function: fprintf(F,"FunctionDecl"); break;
case Decl::BlockVariable: fprintf(F,"BlockVariable"); break;
case Decl::FileVariable: fprintf(F,"FileVariable"); break;
case Decl::ParmVariable: fprintf(F,"ParmVariable"); break;
case Decl::EnumConstant: fprintf(F,"EnumConstant"); break;
case Decl::Typedef: fprintf(F,"Typedef"); break;
case Decl::Struct: fprintf(F,"Struct"); break;
case Decl::Union: fprintf(F,"Union"); break;
case Decl::Class: fprintf(F,"Class"); break;
case Decl::Enum: fprintf(F,"Enum"); break;
case Decl::ObjcInterface: fprintf(F,"ObjcInterface"); break;
case Decl::ObjcClass: fprintf(F,"ObjcClass"); break;
default: fprintf(F,"Decl"); break;
}
fprintf(F, "='%s' %p", Node->getDecl()->getName(), (void*)Node->getDecl());
}
void StmtDumper::VisitPreDefinedExpr(PreDefinedExpr *Node) {