Index: src/AST/Print.cpp
===================================================================
--- src/AST/Print.cpp	(revision fed03b381330db9980faa5add964b193e9cd58c1)
+++ src/AST/Print.cpp	(revision 056bee803aecbc2db1ac1b7607c78dcf1a8d13f7)
@@ -369,4 +369,12 @@
 				--indent;
 			}
+		}
+
+		if ( ! node->withExprs.empty() ) {
+			// Not with a clause, but the 'with clause'.
+			++indent;
+			os << " with clause" << endl << indent;
+			printAll( node->withExprs );
+			--indent;
 		}
 
