Updated XMLPrinter to escape operator= value.
This commit is contained in:
parent
efaf1441b6
commit
5689fe4583
|
@ -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>");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue