Merge pull request #699 from WebFreak001/fix-698

Fix #698
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-09-14 15:02:36 +02:00 committed by GitHub
commit b311b91f2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -598,7 +598,8 @@ class XMLPrinter : ASTVisitor
override void visit(const LabeledStatement labeledStatement)
{
output.writeln("<labeledStatement label=\"", labeledStatement.identifier.text, "\">");
visit(labeledStatement.declarationOrStatement);
if (labeledStatement.declarationOrStatement !is null)
visit(labeledStatement.declarationOrStatement);
output.writeln("</labeledStatement>");
}