Lines Matching defs:exception
2298 Expression* exception() const { return exception_; }
2301 Throw(Zone* zone, Expression* exception, int pos, IdGen* id_gen)
2302 : Expression(zone, pos, id_gen), exception_(exception) {}
3477 Throw* NewThrow(Expression* exception, int pos) {
3478 Throw* t = new (zone_) Throw(zone_, exception, pos, id_gen_);