D | ast.h | 1165 Block* try_block() const { return try_block_; } in try_block() function 1169 TryStatement(Zone* zone, Block* try_block, int pos) in TryStatement() argument 1170 : Statement(zone, pos), try_block_(try_block) {} in TryStatement() 1199 TryCatchStatement(Zone* zone, Block* try_block, Scope* scope, in TryCatchStatement() argument 1202 : TryStatement(zone, try_block, pos), in TryCatchStatement() 1224 TryFinallyStatement(Zone* zone, Block* try_block, Block* finally_block, in TryFinallyStatement() argument 1226 : TryStatement(zone, try_block, pos), finally_block_(finally_block) {} in TryFinallyStatement() 3191 TryCatchStatement* NewTryCatchStatement(Block* try_block, Scope* scope, in NewTryCatchStatement() argument 3195 local_zone_, try_block, scope, variable, catch_block, true, pos); in NewTryCatchStatement() 3198 TryCatchStatement* NewTryCatchStatementForReThrow(Block* try_block, in NewTryCatchStatementForReThrow() argument [all …]
|