Home | History | Annotate | Download | only in ast

Lines Matching refs:TryCatchStatement

64   V(TryCatchStatement)            \
895 class TryCatchStatement final : public TryStatement {
905 // with each TryCatchStatement encountered. The tracked catch prediction is
952 TryCatchStatement(Block* try_block, Scope* scope, Block* catch_block,
2931 TryCatchStatement* NewTryCatchStatement(Block* try_block, Scope* scope,
2933 return new (zone_) TryCatchStatement(try_block, scope, catch_block,
2937 TryCatchStatement* NewTryCatchStatementForReThrow(Block* try_block,
2941 return new (zone_) TryCatchStatement(try_block, scope, catch_block,
2945 TryCatchStatement* NewTryCatchStatementForDesugaring(Block* try_block,
2949 return new (zone_) TryCatchStatement(try_block, scope, catch_block,
2953 TryCatchStatement* NewTryCatchStatementForAsyncAwait(Block* try_block,
2957 return new (zone_) TryCatchStatement(try_block, scope, catch_block,