mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 12:24:39 +01:00
19 lines
476 B
PHP
19 lines
476 B
PHP
|
<?php
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|