Update libdparse

This commit is contained in:
Hackerpilot 2016-01-29 01:33:31 -08:00
parent 9c5005954f
commit 359f52d25b
2 changed files with 1 additions and 12 deletions

@ -1 +1 @@
Subproject commit 60e4a81429627f678e0ad96f4b46950ef6f35cb8
Subproject commit d23e4f421d0d69dfa7f63c17d251583f0512f4b7

View File

@ -582,17 +582,6 @@ class XMLPrinter : ASTVisitor
output.writeln("</labeledStatement>");
}
override void visit(const LambdaExpression lambdaExpression)
{
output.writeln("<lambdaExpression>");
if (lambdaExpression.functionType == tok!"function")
output.writeln("<function/>");
if (lambdaExpression.functionType == tok!"delegate")
output.writeln("<delegate/>");
lambdaExpression.accept(this);
output.writeln("</lambdaExpression>");
}
override void visit(const LinkageAttribute linkageAttribute)
{
if (linkageAttribute.hasPlusPlus)