diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-30 16:30:21 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-30 17:07:22 +0100 |
commit | 527a9bd526d854d3f43b633a94af6dea642297db (patch) | |
tree | e334bb57c912b649551493dc985d2f0dd2e62a22 /src/shared/cplusplus/ASTMatch0.cpp | |
parent | 5fc8324b8bb72ed5156ce52db2e6e506e568b405 (diff) | |
download | qt-creator-527a9bd526d854d3f43b633a94af6dea642297db.tar.gz |
Inital support for Q_D/Q_Q declarations.
Diffstat (limited to 'src/shared/cplusplus/ASTMatch0.cpp')
-rw-r--r-- | src/shared/cplusplus/ASTMatch0.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/shared/cplusplus/ASTMatch0.cpp b/src/shared/cplusplus/ASTMatch0.cpp index 7c4ff19ae6..e16c078808 100644 --- a/src/shared/cplusplus/ASTMatch0.cpp +++ b/src/shared/cplusplus/ASTMatch0.cpp @@ -128,6 +128,14 @@ bool QtMethodAST::match0(AST *pattern, ASTMatcher *matcher) return false; } +bool QtMemberDeclarationAST::match0(AST *pattern, ASTMatcher *matcher) +{ + if (QtMemberDeclarationAST *_other = pattern->asQtMemberDeclaration()) + return matcher->match(this, _other); + + return false; +} + bool BinaryExpressionAST::match0(AST *pattern, ASTMatcher *matcher) { if (BinaryExpressionAST *_other = pattern->asBinaryExpression()) |