aboutsummaryrefslogtreecommitdiff
path: root/Parse/ParseObjc.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2007-11-01 23:59:59 +0000
committerFariborz Jahanian <fjahanian@apple.com>2007-11-01 23:59:59 +0000
commit3b1191d7eaf2f4984564e01ab84b6713a9d80e70 (patch)
treeac1f65d26eb2833d68dfc7f63fcb0586cbf945fb /Parse/ParseObjc.cpp
parentbeb7713c6102687f7e49e27b8228e84a69d8f6c6 (diff)
AST build for @catch clause (this is work in progress).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Parse/ParseObjc.cpp')
-rw-r--r--Parse/ParseObjc.cpp27
1 files changed, 19 insertions, 8 deletions
diff --git a/Parse/ParseObjc.cpp b/Parse/ParseObjc.cpp
index 765422a985..f65e250fae 100644
--- a/Parse/ParseObjc.cpp
+++ b/Parse/ParseObjc.cpp
@@ -13,6 +13,7 @@
#include "clang/Parse/Parser.h"
#include "clang/Parse/DeclSpec.h"
+#include "clang/Parse/Scope.h"
#include "clang/Basic/Diagnostic.h"
#include "llvm/ADT/SmallVector.h"
using namespace clang;
@@ -1053,28 +1054,38 @@ Parser::StmtResult Parser::ParseObjCTryStmt(SourceLocation atLoc) {
Diag (Tok, diag::err_expected_lbrace);
return true;
}
+ StmtResult CatchStmts;
StmtResult TryBody = ParseCompoundStatementBody();
while (Tok.is(tok::at)) {
- ConsumeToken();
+ SourceLocation AtCatchLoc = ConsumeToken();
if (Tok.getIdentifierInfo()->getObjCKeywordID() == tok::objc_catch) {
- SourceLocation catchLoc = ConsumeToken(); // consume catch
+ StmtTy *FirstPart = 0;
+ ConsumeToken(); // consume catch
if (Tok.is(tok::l_paren)) {
ConsumeParen();
+ EnterScope(Scope::DeclScope);
if (Tok.isNot(tok::ellipsis)) {
DeclSpec DS;
ParseDeclarationSpecifiers(DS);
- // Parse the parameter-declaration.
- // FIXME: BlockContext may not be the right context!
- Declarator ParmDecl(DS, Declarator::BlockContext);
- ParseDeclarator(ParmDecl);
+ // FIXME: Is BlockContext right?
+ Declarator DeclaratorInfo(DS, Declarator::BlockContext);
+ ParseDeclarator(DeclaratorInfo);
+ StmtResult stmtResult = Actions.ActOnDeclarator(CurScope,
+ DeclaratorInfo, 0);
+ FirstPart = stmtResult.isInvalid ? 0 : stmtResult.Val;
}
else
ConsumeToken(); // consume '...'
- ConsumeParen();
+ SourceLocation RParenLoc = ConsumeParen();
StmtResult CatchBody = ParseCompoundStatementBody();
+ if (CatchBody.isInvalid)
+ CatchBody = Actions.ActOnNullStmt(Tok.getLocation());
+ CatchStmts = Actions.ActOnObjcAtCatchStmt(AtCatchLoc, RParenLoc,
+ FirstPart, CatchBody.Val, CatchStmts.Val);
+ ExitScope();
}
else {
- Diag(catchLoc, diag::err_expected_lparen_after, "@catch clause");
+ Diag(AtCatchLoc, diag::err_expected_lparen_after, "@catch clause");
return true;
}
catch_or_finally_seen = true;