Fix mismatched XML tags
This commit is contained in:
parent
43fb7bc8e8
commit
49de812e47
|
|
@ -986,11 +986,11 @@ class XMLPrinter : ASTVisitor
|
||||||
{
|
{
|
||||||
output.writeln("<low>");
|
output.writeln("<low>");
|
||||||
visit(index.low);
|
visit(index.low);
|
||||||
output.writeln("<low>");
|
output.writeln("</low>");
|
||||||
|
|
||||||
output.writeln("<high>");
|
output.writeln("<high>");
|
||||||
visit(index.high);
|
visit(index.high);
|
||||||
output.writeln("<high>");
|
output.writeln("</high>");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
visit(index.low);
|
visit(index.low);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue