2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2016-12-23 14:11:31 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2018-01-10 17:24:26 +01:00
|
|
|
class CloningVisitor extends NodeVisitorAbstract
|
|
|
|
{
|
2016-12-23 14:11:31 +01:00
|
|
|
public function enterNode(Node $origNode) {
|
|
|
|
$node = clone $origNode;
|
|
|
|
$node->setAttribute('origNode', $origNode);
|
|
|
|
return $node;
|
|
|
|
}
|
2018-01-10 18:04:06 +01:00
|
|
|
}
|