aboutsummaryrefslogtreecommitdiff
path: root/AST/StmtDumper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AST/StmtDumper.cpp')
-rw-r--r--AST/StmtDumper.cpp8
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
//===----------------------------------------------------------------------===//