diff options
author | Erik Verbruggen <erik.verbruggen@nokia.com> | 2009-07-31 13:22:32 +0200 |
---|---|---|
committer | Erik Verbruggen <erik.verbruggen@nokia.com> | 2009-07-31 13:22:32 +0200 |
commit | b713f1772a4de8330bcdd96a00b9cf103541e008 (patch) | |
tree | dbf903d169e12e983d1cc9355723ea1737d0b270 /src/shared/cplusplus/Semantic.h | |
parent | b54517ad0fab5cfd1500975c52641d0afca6748d (diff) | |
download | qt-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.h | 3 |
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); |