summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Parser.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2009-07-20 11:46:59 +0200
committerErik Verbruggen <erik.verbruggen@nokia.com>2009-07-20 11:46:59 +0200
commit336e1dc5fb596ff7ed84e3a405a1efd578ee4330 (patch)
treea9973006aa82733a3b5cad24f23fc35bf22ec49c /src/shared/cplusplus/Parser.h
parent0eef527746703c067dff7de84a90d71e4509c361 (diff)
downloadqt-creator-336e1dc5fb596ff7ed84e3a405a1efd578ee4330.tar.gz
Fixes for the ObjC AST. Now it should be complete.
Diffstat (limited to 'src/shared/cplusplus/Parser.h')
-rw-r--r--src/shared/cplusplus/Parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/Parser.h b/src/shared/cplusplus/Parser.h
index df017209e1..5fd5253e34 100644
--- a/src/shared/cplusplus/Parser.h
+++ b/src/shared/cplusplus/Parser.h
@@ -238,12 +238,13 @@ public:
bool parseObjCPropertyDeclaration(DeclarationAST *&node,
SpecifierAST *attributes = 0);
bool parseObjCImplementation(DeclarationAST *&node);
- bool parseObjCMethodPrototype(DeclarationAST *&node);
+ bool parseObjCMethodPrototype(ObjCMethodPrototypeAST *&node);
bool parseObjCPropertyAttribute(ObjcPropertyAttributeAST *&node);
bool parseObjCTypeName(ObjCTypeNameAST *&node);
bool parseObjCSelector(unsigned &selector_token);
bool parseObjCKeywordDeclaration(ObjCMessageArgumentDeclarationAST *&node);
bool parseObjCTypeQualifiers(unsigned &type_qualifier);
+ bool parseObjCContextKeyword(int kind, unsigned &in_token);
bool lookAtObjCSelector() const;
@@ -287,7 +288,6 @@ private:
TranslationUnit *_translationUnit;
Control *_control;
MemoryPool *_pool;
- Identifier *_objcInContextKeyword;
unsigned _tokenIndex;
bool _templateArguments: 1;
bool _qtMocRunEnabled: 1;