mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-03-12 02:09:53 +01:00
The formatting in this project has become something of a mess, because it changed over time. Add a CS fixer config and reformat to the desired style, which is PSR-12, but with sane brace placement.
39 lines
854 B
PHP
39 lines
854 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\NodeVisitor;
|
|
|
|
use PhpParser\Node;
|
|
use PhpParser\NodeVisitorAbstract;
|
|
|
|
use function array_pop;
|
|
use function count;
|
|
|
|
/**
|
|
* Visitor that connects a child node to its parent node.
|
|
*
|
|
* On the child node, the parent node can be accessed through
|
|
* <code>$node->getAttribute('parent')</code>.
|
|
*/
|
|
final class ParentConnectingVisitor extends NodeVisitorAbstract {
|
|
/**
|
|
* @var Node[]
|
|
*/
|
|
private $stack = [];
|
|
|
|
public function beforeTraverse(array $nodes) {
|
|
$this->stack = [];
|
|
}
|
|
|
|
public function enterNode(Node $node) {
|
|
if (!empty($this->stack)) {
|
|
$node->setAttribute('parent', $this->stack[count($this->stack) - 1]);
|
|
}
|
|
|
|
$this->stack[] = $node;
|
|
}
|
|
|
|
public function leaveNode(Node $node) {
|
|
array_pop($this->stack);
|
|
}
|
|
}
|