Fix bug in AST output

This commit is contained in:
Hackerpilot 2014-06-09 16:19:36 -07:00
parent 987d2552f2
commit 3b6de50058
1 changed files with 1 additions and 0 deletions

View File

@ -1318,6 +1318,7 @@ class XMLPrinter : ASTVisitor
case tok!"wstringLiteral": tagName = "wstringLiteral"; break;
case tok!"scriptLine": tagName = "scriptLine"; break;
case tok!"$": output.writeln("<dollar/>"); return;
case tok!".": output.writeln("<dot/>"); return;
default: output.writeln("<", str(token.type), "/>"); return;
}
output.writeln("<", tagName, ">", xmlEscape(token.text), "</", tagName, ">");