Home | History | Annotate | Download | only in src

Lines Matching refs:CATCH

1954     // declaration (e.g., if we are inside a 'with' statement or 'catch'
2446 // 'try' Block Catch
2448 // 'try' Block Catch Finally
2450 // Catch ::
2451 // 'catch' '(' Identifier ')' Block
2467 if (tok != Token::CATCH && tok != Token::FINALLY) {
2473 // If we can break out from the catch block and there is a finally block,
2474 // then we will need to collect escaping targets from the catch
2482 if (tok == Token::CATCH) {
2483 Consume(Token::CATCH);
2520 // 'try B0 catch B1 finally B2'
2522 // 'try { try B0 catch B1 } finally B2'
2525 // If we have both, create an inner try/catch.
2549 // Combine the jump targets of the try block and the possible catch block.
4046 // try { throw 1 } catch (x) { eval("function g() { return x }") }