Index: src/AST/Print.cpp
===================================================================
--- src/AST/Print.cpp	(revision fed03b381330db9980faa5add964b193e9cd58c1)
+++ src/AST/Print.cpp	(revision 1633e04fded61ee5535ee0c7690a8307e958f33f)
@@ -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;
 		}
 
