Initial implementation of the pretty printer.

This commit is contained in:
Roberto Raggi
2009-01-03 13:02:37 +01:00
parent 8d91577df9
commit 722ccd9e0d
3 changed files with 1390 additions and 2 deletions

View File

@@ -35,7 +35,9 @@ HEADERS += \
$$PWD/Token.h \
$$PWD/TranslationUnit.h \
$$PWD/Type.h \
$$PWD/TypeVisitor.h
$$PWD/TypeVisitor.h \
$$PWD/PrettyPrinter.h
SOURCES += \
$$PWD/AST.cpp \
@@ -69,5 +71,6 @@ SOURCES += \
$$PWD/Token.cpp \
$$PWD/TranslationUnit.cpp \
$$PWD/Type.cpp \
$$PWD/TypeVisitor.cpp
$$PWD/TypeVisitor.cpp \
$$PWD/PrettyPrinter.cpp