File "CloningVisitor.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/CloningVisitor.php
File size: 502 bytes
MIME-type: text/x-php
Charset: utf-8
<?php declare(strict_types=1);
namespace PhpParser\NodeVisitor;
use PhpParser\Node;
use PhpParser\NodeVisitorAbstract;
/**
* Visitor cloning all nodes and linking to the original nodes using an attribute.
*
* This visitor is required to perform format-preserving pretty prints.
*/
class CloningVisitor extends NodeVisitorAbstract
{
public function enterNode(Node $origNode) {
$node = clone $origNode;
$node->setAttribute('origNode', $origNode);
return $node;
}
}