mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
revert back wrong change
This commit is contained in:
parent
70bfce769c
commit
39b85f574b
@ -92,7 +92,7 @@ class DoAnalyzer
|
||||
if (LoopAnalyzer::analyze(
|
||||
$statements_analyzer,
|
||||
$stmt->stmts,
|
||||
[$stmt->cond],
|
||||
WhileAnalyzer::getAndExpressions($stmt->cond),
|
||||
[],
|
||||
$loop_scope,
|
||||
$inner_loop_context,
|
||||
@ -132,6 +132,22 @@ class DoAnalyzer
|
||||
);
|
||||
}
|
||||
|
||||
foreach ($inner_loop_context->vars_in_scope as $var_id => $type) {
|
||||
// if there are break statements in the loop it's not certain
|
||||
// that the loop has finished executing, so the assertions at the end
|
||||
// the loop in the while conditional may not hold
|
||||
if (in_array(ScopeAnalyzer::ACTION_BREAK, $loop_scope->final_actions, true)) {
|
||||
if (isset($loop_scope->possibly_defined_loop_parent_vars[$var_id])) {
|
||||
$context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
||||
$type,
|
||||
$loop_scope->possibly_defined_loop_parent_vars[$var_id]
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$context->vars_in_scope[$var_id] = $type;
|
||||
}
|
||||
}
|
||||
|
||||
$do_context->loop_scope = null;
|
||||
|
||||
$context->vars_possibly_in_scope = array_merge(
|
||||
|
Loading…
Reference in New Issue
Block a user