Added more newlines to the .dot file for the AST.

This commit is contained in:
Erik Verbruggen
2010-03-08 17:34:32 +01:00
parent 56a25fffa8
commit f0d5036419

View File

@@ -90,9 +90,9 @@ public:
protected:
void alignTerminals() {
out<<"{ rank=same; ";
out<<"{ rank=same;" << std::endl;
foreach (const QByteArray &terminalShape, _terminalShapes) {
out << std::string(terminalShape) << "; ";
out << " " << std::string(terminalShape) << ";" << std::endl;
}
out<<"}"<<std::endl;
}