diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-14 16:05:25 +0100 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2010-02-15 09:27:01 +0100 |
commit | f4163b8ba01cd1a4f5d91c83a3863939b7809375 (patch) | |
tree | 2d14b5bbfdb23896bbea2382db81af49be391862 /src/shared/cplusplus/ASTMatcher.h | |
parent | 2a59d2ae0c889fe6e4ac50a3f110b0103f880c15 (diff) | |
download | qt-creator-f4163b8ba01cd1a4f5d91c83a3863939b7809375.tar.gz |
Added Objective-C @try block parsing.
Diffstat (limited to 'src/shared/cplusplus/ASTMatcher.h')
-rw-r--r-- | src/shared/cplusplus/ASTMatcher.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shared/cplusplus/ASTMatcher.h b/src/shared/cplusplus/ASTMatcher.h index c6466a4919..38331077fb 100644 --- a/src/shared/cplusplus/ASTMatcher.h +++ b/src/shared/cplusplus/ASTMatcher.h @@ -126,6 +126,7 @@ public: virtual bool match(TemplateTypeParameterAST *node, TemplateTypeParameterAST *pattern); virtual bool match(ThisExpressionAST *node, ThisExpressionAST *pattern); virtual bool match(ThrowExpressionAST *node, ThrowExpressionAST *pattern); + virtual bool match(ObjCThrowExpressionAST *node, ObjCThrowExpressionAST *pattern); virtual bool match(TranslationUnitAST *node, TranslationUnitAST *pattern); virtual bool match(TryBlockStatementAST *node, TryBlockStatementAST *pattern); virtual bool match(TypeConstructorCallAST *node, TypeConstructorCallAST *pattern); @@ -169,6 +170,9 @@ public: virtual bool match(ObjCDynamicPropertiesDeclarationAST *node, ObjCDynamicPropertiesDeclarationAST *pattern); virtual bool match(ObjCFastEnumerationAST *node, ObjCFastEnumerationAST *pattern); virtual bool match(ObjCSynchronizedStatementAST *node, ObjCSynchronizedStatementAST *pattern); + virtual bool match(ObjCTryBlockStatementAST *node, ObjCTryBlockStatementAST *pattern); + virtual bool match(ObjCCatchClauseAST *node, ObjCCatchClauseAST *pattern); + virtual bool match(ObjCFinallyClauseAST *node, ObjCFinallyClauseAST *pattern); }; } // end of namespace CPlusPlus |