Home | History | Annotate | Download | only in src

Lines Matching defs:IsJump

250   virtual bool IsJump() const { return false; }
446 virtual bool IsJump() const V8_OVERRIDE {
447 return !statements_.is_empty() && statements_.last()->IsJump()
1031 virtual bool IsJump() const V8_OVERRIDE { return expression_->IsThrow(); }
1044 virtual bool IsJump() const V8_FINAL V8_OVERRIDE { return true; }
1195 virtual bool IsJump() const V8_OVERRIDE {
1196 return HasThenStatement() && then_statement()->IsJump()
1197 && HasElseStatement() && else_statement()->IsJump();