diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 11:27:56 +0100 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2009-11-10 16:20:09 +0100 |
commit | 77e7899e7ca3c4f426f53a2cd89e6924fd2d1646 (patch) | |
tree | 4ebba24b7feefb9220d3a1a0f8416a91573972fa /src/shared/cplusplus/AST.h | |
parent | 36a0ea2bcbe306ef845549defb894f479b47a9a1 (diff) | |
download | qt-creator-77e7899e7ca3c4f426f53a2cd89e6924fd2d1646.tar.gz |
Removed StatementListAST
Done with Erik Verbruggen
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index 3bc6f8e174..a3686849b4 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -607,22 +607,6 @@ protected: virtual void accept0(ASTVisitor *visitor); }; -class CPLUSPLUS_EXPORT StatementListAST: public AST -{ -public: - StatementAST *statement; - StatementListAST *next; - -public: - virtual StatementListAST *asStatementList() { return this; } - - virtual unsigned firstToken() const; - virtual unsigned lastToken() const; - -protected: - virtual void accept0(ASTVisitor *visitor); -}; - class CPLUSPLUS_EXPORT CompoundStatementAST: public StatementAST { public: |