12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- namespace PhpParser;
- class NodeDumper
- {
- private $dumpComments;
-
- public function __construct(array $options = []) {
- $this->dumpComments = !empty($options['dumpComments']);
- }
-
- public function dump($node) {
- if ($node instanceof Node) {
- $r = $node->getType() . '(';
- foreach ($node->getSubNodeNames() as $key) {
- $r .= "\n " . $key . ': ';
- $value = $node->$key;
- if (null === $value) {
- $r .= 'null';
- } elseif (false === $value) {
- $r .= 'false';
- } elseif (true === $value) {
- $r .= 'true';
- } elseif (is_scalar($value)) {
- $r .= $value;
- } else {
- $r .= str_replace("\n", "\n ", $this->dump($value));
- }
- }
- if ($this->dumpComments && $comments = $node->getAttribute('comments')) {
- $r .= "\n comments: " . str_replace("\n", "\n ", $this->dump($comments));
- }
- } elseif (is_array($node)) {
- $r = 'array(';
- foreach ($node as $key => $value) {
- $r .= "\n " . $key . ': ';
- if (null === $value) {
- $r .= 'null';
- } elseif (false === $value) {
- $r .= 'false';
- } elseif (true === $value) {
- $r .= 'true';
- } elseif (is_scalar($value)) {
- $r .= $value;
- } else {
- $r .= str_replace("\n", "\n ", $this->dump($value));
- }
- }
- } elseif ($node instanceof Comment) {
- return $node->getReformattedText();
- } else {
- throw new \InvalidArgumentException('Can only dump nodes and arrays.');
- }
- return $r . "\n)";
- }
- }
|