1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 15:09:04 +01:00
psalm/src/Psalm/Internal/PhpVisitor/AssignmentMapVisitor.php

115 lines
3.7 KiB
PHP
Raw Normal View History

<?php
2020-03-15 04:54:42 +01:00
namespace Psalm\Internal\PhpVisitor;
use PhpParser;
2020-05-18 21:13:27 +02:00
use Psalm\Internal\Analyzer\Statements\Expression\ExpressionIdentifier;
/**
* @internal
2021-01-11 23:14:23 +01:00
*
* This produces a graph of probably assignments inside a loop
*
* With this map we can calculate how many times the loop analysis must
* be run before all variables have the correct types
*/
class AssignmentMapVisitor extends PhpParser\NodeVisitorAbstract
{
/**
* @var array<string, array<string, bool>>
*/
protected $assignment_map = [];
/**
* @var string|null
*/
protected $this_class_name;
public function __construct(?string $this_class_name)
{
$this->this_class_name = $this_class_name;
}
public function enterNode(PhpParser\Node $node): ?int
{
if ($node instanceof PhpParser\Node\Expr\Assign) {
2020-05-18 21:13:27 +02:00
$right_var_id = ExpressionIdentifier::getRootVarId($node->expr, $this->this_class_name);
if ($node->var instanceof PhpParser\Node\Expr\List_
|| $node->var instanceof PhpParser\Node\Expr\Array_
) {
foreach ($node->var->items as $assign_item) {
if ($assign_item) {
$left_var_id = ExpressionIdentifier::getRootVarId($assign_item->value, $this->this_class_name);
if ($left_var_id) {
$this->assignment_map[$left_var_id][$right_var_id ?: 'isset'] = true;
}
}
}
} else {
$left_var_id = ExpressionIdentifier::getRootVarId($node->var, $this->this_class_name);
if ($left_var_id) {
$this->assignment_map[$left_var_id][$right_var_id ?: 'isset'] = true;
}
}
return PhpParser\NodeTraverser::DONT_TRAVERSE_CHILDREN;
}
if ($node instanceof PhpParser\Node\Expr\PostInc
|| $node instanceof PhpParser\Node\Expr\PostDec
|| $node instanceof PhpParser\Node\Expr\PreInc
|| $node instanceof PhpParser\Node\Expr\PreDec
|| $node instanceof PhpParser\Node\Expr\AssignOp
) {
2020-05-18 21:13:27 +02:00
$var_id = ExpressionIdentifier::getRootVarId($node->var, $this->this_class_name);
if ($var_id) {
$this->assignment_map[$var_id][$var_id] = true;
}
return PhpParser\NodeTraverser::DONT_TRAVERSE_CHILDREN;
}
if ($node instanceof PhpParser\Node\Expr\FuncCall
|| $node instanceof PhpParser\Node\Expr\MethodCall
|| $node instanceof PhpParser\Node\Expr\StaticCall
) {
foreach ($node->args as $arg) {
2020-05-18 21:13:27 +02:00
$arg_var_id = ExpressionIdentifier::getRootVarId($arg->value, $this->this_class_name);
2018-12-20 22:03:21 +01:00
if ($arg_var_id) {
$this->assignment_map[$arg_var_id][$arg_var_id] = true;
}
}
if ($node instanceof PhpParser\Node\Expr\MethodCall) {
$var_id = ExpressionIdentifier::getRootVarId($node->var, $this->this_class_name);
2021-05-23 22:49:46 +02:00
if ($var_id) {
$this->assignment_map[$var_id]['isset'] = true;
}
}
2018-12-20 22:03:21 +01:00
} elseif ($node instanceof PhpParser\Node\Stmt\Unset_) {
foreach ($node->vars as $arg) {
2020-05-18 21:13:27 +02:00
$arg_var_id = ExpressionIdentifier::getRootVarId($arg, $this->this_class_name);
2018-12-20 22:03:21 +01:00
if ($arg_var_id) {
$this->assignment_map[$arg_var_id][$arg_var_id] = true;
}
}
}
return null;
}
/**
* @return array<string, array<string, bool>>
*/
public function getAssignmentMap(): array
{
return $this->assignment_map;
}
}