Home | History | Annotate | Download | only in ast

Lines Matching defs:IsJump

233   bool IsJump() const;
451 bool IsJump() const {
452 return !statements_.is_empty() && statements_.last()->IsJump()
849 bool IsJump() const { return expression_->IsThrow(); }
863 bool IsJump() const { return true; }
1030 bool IsJump() const {
1031 return HasThenStatement() && then_statement()->IsJump()
1032 && HasElseStatement() && else_statement()->IsJump();
3010 if (stmt->IsJump()) break;