Home | History | Annotate | Download | only in src

Lines Matching refs:CATCH

2209     // declaration (e.g., if we are inside a 'with' statement or 'catch'
2672 // 'try' Block Catch
2674 // 'try' Block Catch Finally
2676 // Catch ::
2677 // 'catch' '(' Identifier ')' Block
2692 if (tok != Token::CATCH && tok != Token::FINALLY) {
2698 // If we can break out from the catch block and there is a finally block,
2699 // then we will need to collect escaping targets from the catch
2707 if (tok == Token::CATCH) {
2708 Consume(Token::CATCH);
2745 // 'try B0 catch B1 finally B2'
2747 // 'try { try B0 catch B1 } finally B2'
2750 // If we have both, create an inner try/catch.
2772 // Combine the jump targets of the try block and the possible catch block.