mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 15:09:04 +01:00
36 lines
664 B
PHP
36 lines
664 B
PHP
<?php
|
|
|
|
namespace Psalm\Internal\PhpVisitor;
|
|
|
|
use PhpParser;
|
|
|
|
use function is_string;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
class ShortClosureVisitor extends PhpParser\NodeVisitorAbstract
|
|
{
|
|
/**
|
|
* @var array<string, bool>
|
|
*/
|
|
protected array $used_variables = [];
|
|
|
|
public function enterNode(PhpParser\Node $node): ?int
|
|
{
|
|
if ($node instanceof PhpParser\Node\Expr\Variable && is_string($node->name)) {
|
|
$this->used_variables['$' . $node->name] = true;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, bool>
|
|
*/
|
|
public function getUsedVariables(): array
|
|
{
|
|
return $this->used_variables;
|
|
}
|
|
}
|