From 77418c8ab7af6464412e57cbe845b5835a6a15fc Mon Sep 17 00:00:00 2001 From: eco Date: Fri, 16 Aug 2013 19:52:18 -0600 Subject: [PATCH] Fix --ast crash on empty 'for' init decl/statement --- astprinter.d | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/astprinter.d b/astprinter.d index 7719027..024fb19 100644 --- a/astprinter.d +++ b/astprinter.d @@ -464,9 +464,12 @@ class XMLPrinter : ASTVisitor override void visit(ForStatement forStatement) { output.writeln(""); - output.writeln(""); - visit(forStatement.declarationOrStatement); - output.writeln(""); + if (forStatement.declarationOrStatement !is null) + { + output.writeln(""); + visit(forStatement.declarationOrStatement); + output.writeln(""); + } if (forStatement.test !is null) { output.writeln("");