mirror of
https://github.com/danog/psalm.git
synced 2024-12-16 11:26:55 +01:00
f29826b958
This should give a small performance boost. Part of #1837. The change is enforced via phpcs and can be autofixed with phpcbf.
158 lines
4.8 KiB
PHP
158 lines
4.8 KiB
PHP
<?php
|
|
namespace Psalm\Internal\Analyzer\Statements\Block;
|
|
|
|
use PhpParser;
|
|
use Psalm\Internal\Analyzer\ScopeAnalyzer;
|
|
use Psalm\Internal\Analyzer\Statements\ExpressionAnalyzer;
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
|
use Psalm\Context;
|
|
use Psalm\Internal\Scope\LoopScope;
|
|
use Psalm\Type;
|
|
use function array_merge;
|
|
use function in_array;
|
|
use function array_intersect_key;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ForAnalyzer
|
|
{
|
|
/**
|
|
* @param StatementsAnalyzer $statements_analyzer
|
|
* @param PhpParser\Node\Stmt\For_ $stmt
|
|
* @param Context $context
|
|
*
|
|
* @return false|null
|
|
*/
|
|
public static function analyze(
|
|
StatementsAnalyzer $statements_analyzer,
|
|
PhpParser\Node\Stmt\For_ $stmt,
|
|
Context $context
|
|
) {
|
|
$pre_assigned_var_ids = $context->assigned_var_ids;
|
|
$context->assigned_var_ids = [];
|
|
|
|
foreach ($stmt->init as $init) {
|
|
if (ExpressionAnalyzer::analyze($statements_analyzer, $init, $context) === false) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$assigned_var_ids = $context->assigned_var_ids;
|
|
|
|
$context->assigned_var_ids = array_merge(
|
|
$pre_assigned_var_ids,
|
|
$assigned_var_ids
|
|
);
|
|
|
|
$while_true = !$stmt->cond && !$stmt->init && !$stmt->loop;
|
|
|
|
$pre_context = null;
|
|
|
|
if ($while_true) {
|
|
$pre_context = clone $context;
|
|
}
|
|
|
|
$for_context = clone $context;
|
|
|
|
$for_context->inside_loop = true;
|
|
$for_context->inside_case = false;
|
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
|
|
|
if ($codebase->alter_code) {
|
|
$for_context->branch_point = $for_context->branch_point ?: (int) $stmt->getAttribute('startFilePos');
|
|
}
|
|
|
|
$loop_scope = new LoopScope($for_context, $context);
|
|
|
|
$loop_scope->protected_var_ids = array_merge(
|
|
$assigned_var_ids,
|
|
$context->protected_var_ids
|
|
);
|
|
|
|
LoopAnalyzer::analyze(
|
|
$statements_analyzer,
|
|
$stmt->stmts,
|
|
$stmt->cond,
|
|
$stmt->loop,
|
|
$loop_scope,
|
|
$inner_loop_context
|
|
);
|
|
|
|
if (!$inner_loop_context) {
|
|
throw new \UnexpectedValueException('There should be an inner loop context');
|
|
}
|
|
|
|
$always_enters_loop = false;
|
|
|
|
foreach ($stmt->cond as $cond) {
|
|
if (isset($cond->inferredType)) {
|
|
foreach ($cond->inferredType->getTypes() as $iterator_type) {
|
|
$always_enters_loop = $iterator_type instanceof Type\Atomic\TTrue;
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($while_true) {
|
|
$always_enters_loop = true;
|
|
}
|
|
|
|
$can_leave_loop = !$while_true
|
|
|| in_array(ScopeAnalyzer::ACTION_BREAK, $loop_scope->final_actions, true);
|
|
|
|
if ($always_enters_loop && $can_leave_loop) {
|
|
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
|
|
if (in_array(ScopeAnalyzer::ACTION_BREAK, $loop_scope->final_actions, true)
|
|
|| in_array(ScopeAnalyzer::ACTION_CONTINUE, $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;
|
|
}
|
|
}
|
|
}
|
|
|
|
$for_context->loop_scope = null;
|
|
|
|
if ($can_leave_loop) {
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
$context->vars_possibly_in_scope,
|
|
$for_context->vars_possibly_in_scope
|
|
);
|
|
} elseif ($pre_context) {
|
|
$context->vars_possibly_in_scope = $pre_context->vars_possibly_in_scope;
|
|
}
|
|
|
|
$context->referenced_var_ids = array_intersect_key(
|
|
$for_context->referenced_var_ids,
|
|
$context->referenced_var_ids
|
|
);
|
|
|
|
if ($context->collect_references) {
|
|
foreach ($for_context->unreferenced_vars as $var_id => $locations) {
|
|
if (isset($context->unreferenced_vars[$var_id])) {
|
|
$context->unreferenced_vars[$var_id] += $locations;
|
|
} else {
|
|
$context->unreferenced_vars[$var_id] = $locations;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($context->collect_exceptions) {
|
|
$context->mergeExceptions($for_context);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|