Home | History | Annotate | Download | only in Parse

Lines Matching defs:Catch

2468 ///  objc-try-catch-statement:
2469 /// @try compound-statement objc-catch-list[opt]
2470 /// @try compound-statement objc-catch-list[opt] @finally compound-statement
2472 /// objc-catch-list:
2473 /// @catch ( parameter-declaration ) compound-statement
2474 /// objc-catch-list @catch ( catch-parameter-declaration ) compound-statement
2475 /// catch-parameter-declaration:
2497 // of an @catch or @finally. We don't want to consume the @ token if this
2507 ConsumeToken(); // consume catch
2538 StmtResult Catch = Actions.ActOnObjCAtCatchStmt(AtCatchFinallyLoc,
2542 if (!Catch.isInvalid())
2543 CatchStmts.push_back(Catch.get());
2547 << "@catch clause";