summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Semantic.h
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@nokia.com>2009-07-31 13:22:32 +0200
committerErik Verbruggen <erik.verbruggen@nokia.com>2009-07-31 13:22:32 +0200
commitb713f1772a4de8330bcdd96a00b9cf103541e008 (patch)
treedbf903d169e12e983d1cc9355723ea1737d0b270 /src/shared/cplusplus/Semantic.h
parentb54517ad0fab5cfd1500975c52641d0afca6748d (diff)
downloadqt-creator-b713f1772a4de8330bcdd96a00b9cf103541e008.tar.gz
Added semantic checks for method declarations.
Diffstat (limited to 'src/shared/cplusplus/Semantic.h')
-rw-r--r--src/shared/cplusplus/Semantic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/cplusplus/Semantic.h b/src/shared/cplusplus/Semantic.h
index 113796bafb..70f0e2f5d5 100644
--- a/src/shared/cplusplus/Semantic.h
+++ b/src/shared/cplusplus/Semantic.h
@@ -87,6 +87,9 @@ public:
Name *check(NestedNameSpecifierAST *name, Scope *scope);
Name *check(ObjCSelectorAST *args, Scope *scope);
+ FullySpecifiedType check(ObjCTypeNameAST *typeName, Scope *scope);
+
+ void check(ObjCMessageArgumentDeclarationAST *arg, Scope *scope);
bool skipFunctionBodies() const;
void setSkipFunctionBodies(bool skipFunctionBodies);