Lines Matching defs:condition
891 void SetEnteredIf(bool condition) {
893 if (condition && scope_ != nullptr && !is_in_scope_) {
895 } else if (!condition && is_in_scope_) {
1739 if (stmt->condition()->ToBooleanIsTrue()) {
1743 } else if (stmt->condition()->ToBooleanIsFalse()) {
1753 VisitForTest(stmt->condition(), conditional_builder.then_labels(),
2251 // Since we know that the condition is false, we don't create a loop.
2274 // If the condition is false there is no need to generate the loop.
2296 // If the condition is known to be false there is no need to generate
2297 // body, next or condition blocks. Init block should be generated.
2965 if (expr->condition()->ToBooleanIsTrue()) {
2969 } else if (expr->condition()->ToBooleanIsFalse()) {
2974 VisitForTest(expr->condition(), conditional_builder.then_labels(),