Merge pull request #152 from workhorsy/master

Fix for issue #51
This commit is contained in:
Hackerpilot 2014-03-23 20:49:00 -07:00
commit a3c5cb6484
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ class XMLPrinter : ASTVisitor
output.writeln("<assignExpression>");
else
output.writeln("<assignExpression operator=\"",
str(assignExpression.operator), "\">");
xmlEscape(str(assignExpression.operator)), "\">");
assignExpression.accept(this);
output.writeln("</assignExpression>");
}