Initial work on the pattern matcher for AST nodes.

This commit is contained in:
Roberto Raggi
2009-11-12 17:35:48 +01:00
parent b2f6803329
commit 5dcf449afd
10 changed files with 2846 additions and 66 deletions

View File

@@ -5,6 +5,7 @@ INCLUDEPATH += $$PWD
HEADERS += \
$$PWD/AST.h \
$$PWD/ASTVisitor.h \
$$PWD/ASTMatcher.h \
$$PWD/ASTfwd.h \
$$PWD/Array.h \
$$PWD/CPlusPlusForwardDeclarations.h \
@@ -41,7 +42,9 @@ HEADERS += \
SOURCES += \
$$PWD/AST.cpp \
$$PWD/ASTVisit.cpp \
$$PWD/ASTMatch0.cpp \
$$PWD/ASTVisitor.cpp \
$$PWD/ASTMatcher.cpp \
$$PWD/Array.cpp \
$$PWD/CheckDeclaration.cpp \
$$PWD/CheckDeclarator.cpp \