diff options
author | Anders Carlsson <andersca@mac.com> | 2007-08-22 15:14:15 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2007-08-22 15:14:15 +0000 |
commit | f9bcf01f82dfd2688f81e57bcc6300c9b13c51a6 (patch) | |
tree | 88375a003a20043c1116cb4344c93209aaacab5f /AST/StmtDumper.cpp | |
parent | 697e15f2a028f8997cccb24ecd05099988cfb1a9 (diff) |
Parse @encode expressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'AST/StmtDumper.cpp')
-rw-r--r-- | AST/StmtDumper.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/AST/StmtDumper.cpp b/AST/StmtDumper.cpp index 22af23cc0e..cf1eab172e 100644 --- a/AST/StmtDumper.cpp +++ b/AST/StmtDumper.cpp @@ -503,6 +503,14 @@ void StmtDumper::VisitObjCStringLiteral(ObjCStringLiteral *Node) { fprintf(F, ")"); } +void StmtDumper::VisitObjCEncodeExpr(ObjCEncodeExpr *Node) { + DumpExpr(Node); + + fprintf(F, " "); + DumpType(Node->getEncodedType()); + fprintf(F, ")"); +} + //===----------------------------------------------------------------------===// // Stmt method implementations //===----------------------------------------------------------------------===// |