cond, $context) === false) { return false; } $original_context = clone $context; $new_vars_in_scope = null; $new_vars_possibly_in_scope = []; $redefined_vars = null; $possibly_redefined_vars = null; // the last statement always breaks, by default $last_case_exit_type = 'break'; $case_exit_types = new \SplFixedArray(count($stmt->cases)); $has_default = false; $case_action_map = []; // create a map of case statement -> ultimate exit type for ($i = count($stmt->cases) - 1; $i >= 0; --$i) { $case = $stmt->cases[$i]; $case_actions = $case_action_map[$i] = ScopeChecker::getFinalControlActions($case->stmts); if (!in_array(ScopeChecker::ACTION_NONE, $case_actions, true)) { if ($case_actions === [ScopeChecker::ACTION_END]) { $last_case_exit_type = 'return_throw'; } elseif ($case_actions === [ScopeChecker::ACTION_CONTINUE]) { $last_case_exit_type = 'continue'; } elseif (in_array(ScopeChecker::ACTION_BREAK, $case_actions, true)) { $last_case_exit_type = 'break'; } } $case_exit_types[$i] = $last_case_exit_type; } $leftover_statements = []; for ($i = count($stmt->cases) - 1; $i >= 0; --$i) { $case = $stmt->cases[$i]; /** @var string */ $case_exit_type = $case_exit_types[$i]; $case_context = clone $original_context; $case_context->parent_context = $context; if ($case->cond) { if (ExpressionChecker::analyze($statements_checker, $case->cond, $case_context) === false) { return false; } $fake_equality = new PhpParser\Node\Expr\BinaryOp\Equal($stmt->cond, $case->cond); $case_clauses = AlgebraChecker::getFormula( $fake_equality, $context->self, $statements_checker ); // this will see whether any of the clauses in set A conflict with the clauses in set B AlgebraChecker::checkForParadox($context->clauses, $case_clauses, $statements_checker, $stmt->cond, []); $case_context->clauses = AlgebraChecker::simplifyCNF(array_merge($context->clauses, $case_clauses)); $reconcilable_if_types = AlgebraChecker::getTruthsFromFormula($case_context->clauses); // if the if has an || in the conditional, we cannot easily reason about it if ($reconcilable_if_types) { $changed_var_ids = []; $case_vars_in_scope_reconciled = TypeChecker::reconcileKeyedTypes( $reconcilable_if_types, $case_context->vars_in_scope, $changed_var_ids, [], $statements_checker, new CodeLocation($statements_checker->getSource(), $stmt->cond, $context->include_location), $statements_checker->getSuppressedIssues() ); if ($case_vars_in_scope_reconciled === false) { return false; } $case_context->vars_in_scope = $case_vars_in_scope_reconciled; foreach ($reconcilable_if_types as $var_id => $type) { $case_context->vars_possibly_in_scope[$var_id] = true; } if ($changed_var_ids) { $case_context->removeReconciledClauses($changed_var_ids); } } } $case_stmts = $case->stmts; $case_actions = $case_action_map[$i]; // has a return/throw at end $has_ending_statements = $case_actions === [ScopeChecker::ACTION_END]; $has_leaving_statements = $has_ending_statements || (count($case_actions) && !in_array(ScopeChecker::ACTION_NONE, $case_actions, true)); if (!$case_stmts || (!$has_ending_statements && !$has_leaving_statements)) { $case_stmts = array_merge($case_stmts, $leftover_statements); } else { $leftover_statements = []; } $statements_checker->analyze($case_stmts, $case_context, $loop_scope); $context->referenced_var_ids = array_merge( $context->referenced_var_ids, $case_context->referenced_var_ids ); if ($case_exit_type !== 'return_throw') { $vars = array_diff_key( $case_context->vars_possibly_in_scope, $original_context->vars_possibly_in_scope ); // if we're leaving this block, add vars to outer for loop scope if ($case_exit_type === 'continue') { if ($loop_scope) { $loop_scope->vars_possibly_in_scope = array_merge( $vars, $loop_scope->vars_possibly_in_scope ); } else { if (IssueBuffer::accepts( new ContinueOutsideLoop( 'Continue called when not in loop', new CodeLocation($statements_checker->getSource(), $case) ) )) { return false; } } } else { $case_redefined_vars = $case_context->getRedefinedVars($original_context->vars_in_scope); Type::redefineGenericUnionTypes($case_redefined_vars, $context); if ($possibly_redefined_vars === null) { $possibly_redefined_vars = $case_redefined_vars; } else { foreach ($case_redefined_vars as $var_id => $type) { if (!isset($possibly_redefined_vars[$var_id])) { $possibly_redefined_vars[$var_id] = $type; } else { $possibly_redefined_vars[$var_id] = Type::combineUnionTypes( $type, $possibly_redefined_vars[$var_id] ); } } } if ($redefined_vars === null) { $redefined_vars = $case_redefined_vars; } else { foreach ($redefined_vars as $var_id => $type) { if (!isset($case_redefined_vars[$var_id])) { unset($redefined_vars[$var_id]); } else { $redefined_vars[$var_id] = Type::combineUnionTypes( $type, $case_redefined_vars[$var_id] ); } } } $context_new_vars = array_diff_key($case_context->vars_in_scope, $context->vars_in_scope); if ($new_vars_in_scope === null) { $new_vars_in_scope = $context_new_vars; $new_vars_possibly_in_scope = array_diff_key( $case_context->vars_possibly_in_scope, $context->vars_possibly_in_scope ); } else { foreach ($new_vars_in_scope as $new_var => $type) { if (!$case_context->hasVariable($new_var)) { unset($new_vars_in_scope[$new_var]); } else { $new_vars_in_scope[$new_var] = Type::combineUnionTypes($case_context->vars_in_scope[$new_var], $type); } } $new_vars_possibly_in_scope = array_merge( array_diff_key( $case_context->vars_possibly_in_scope, $context->vars_possibly_in_scope ), $new_vars_possibly_in_scope ); } } } if ($case->stmts) { $leftover_statements = array_merge($leftover_statements, $case->stmts); } if (!$case->cond) { $has_default = true; } } // only update vars if there is a default // if that default has a throw/return/continue, that should be handled above if ($has_default) { if ($new_vars_in_scope) { $context->vars_in_scope = array_merge($context->vars_in_scope, $new_vars_in_scope); } if ($redefined_vars) { $context->vars_in_scope = array_merge($context->vars_in_scope, $redefined_vars); } if ($possibly_redefined_vars) { foreach ($possibly_redefined_vars as $var_id => $type) { if (!isset($redefined_vars[$var_id]) && !isset($new_vars_in_scope[$var_id])) { $context->vars_in_scope[$var_id] = Type::combineUnionTypes($type, $context->vars_in_scope[$var_id]); } } } } elseif ($possibly_redefined_vars) { foreach ($possibly_redefined_vars as $var_id => $type) { $context->vars_in_scope[$var_id] = Type::combineUnionTypes($type, $context->vars_in_scope[$var_id]); } } $context->vars_possibly_in_scope = array_merge($context->vars_possibly_in_scope, $new_vars_possibly_in_scope); return null; } }