rector/packages/NodeNestingScope/NodeFinder/ScopeAwareNodeFinder.php
Tomas Votruba cdc3b7adef Updated Rector to commit f451b0b8e1e6761ec7f50809745d44d01caba66d
f451b0b8e1 [PHP 8.0] Bump to promoted properties (#4)
2021-05-10 23:39:21 +00:00

68 lines
2.4 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\NodeNestingScope\NodeFinder;
use PhpParser\Node;
use Rector\Core\PhpParser\Node\BetterNodeFinder;
use Rector\NodeNestingScope\ValueObject\ControlStructure;
final class ScopeAwareNodeFinder
{
/**
* @var bool
*/
private $isBreakingNodeFoundFirst = \false;
/**
* @var \Rector\Core\PhpParser\Node\BetterNodeFinder
*/
private $betterNodeFinder;
public function __construct(\Rector\Core\PhpParser\Node\BetterNodeFinder $betterNodeFinder)
{
$this->betterNodeFinder = $betterNodeFinder;
}
/**
* Find node based on $callable or null, when the nesting scope is broken
* @param array<class-string<Node>> $allowedTypes
*/
public function findParentType(\PhpParser\Node $node, array $allowedTypes) : ?\PhpParser\Node
{
$callable = function (\PhpParser\Node $node) use($allowedTypes) : bool {
foreach ($allowedTypes as $allowedType) {
if (!\is_a($node, $allowedType)) {
continue;
}
return \true;
}
return \false;
};
return $this->findParent($node, $callable, $allowedTypes);
}
/**
* Find node based on $callable or null, when the nesting scope is broken
* @param array<class-string<Node>> $allowedTypes
*/
public function findParent(\PhpParser\Node $node, callable $callable, array $allowedTypes) : ?\PhpParser\Node
{
/** @var array<class-string<Node>> $parentNestingBreakTypes */
$parentNestingBreakTypes = \array_diff(\Rector\NodeNestingScope\ValueObject\ControlStructure::BREAKING_SCOPE_NODE_TYPES, $allowedTypes);
$this->isBreakingNodeFoundFirst = \false;
$foundNode = $this->betterNodeFinder->findFirstPrevious($node, function (\PhpParser\Node $node) use($callable, $parentNestingBreakTypes) : bool {
if ($callable($node)) {
return \true;
}
foreach ($parentNestingBreakTypes as $parentNestingBreakType) {
if (!\is_a($node, $parentNestingBreakType, \true)) {
continue;
}
$this->isBreakingNodeFoundFirst = \true;
return \true;
}
return \false;
});
if ($this->isBreakingNodeFoundFirst) {
return null;
}
return $foundNode;
}
}