Lines Matching refs:exception
2269 Expression* exception() const { return exception_; }2272 Throw(Zone* zone, Expression* exception, int pos)2273 : Expression(zone, pos), exception_(exception) {}3308 Throw* NewThrow(Expression* exception, int pos) {3309 Throw* t = new(zone_) Throw(zone_, exception, pos);