mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
|
|
class NodeDumper
|
|
{
|
|
/**
|
|
* Dumps a Node, scalar or array to a string.
|
|
*
|
|
* @param mixed $node Value to dump
|
|
* @return string Dumped value
|
|
*/
|
|
public function dump($node) {
|
|
if (is_array($node) || $node instanceof NodeAbstract) {
|
|
if (is_array($node)) {
|
|
$r = 'array(';
|
|
} else {
|
|
$r = $node->getType() . '(';
|
|
}
|
|
|
|
foreach ($node as $key => $value) {
|
|
$r .= "\n" . ' ' . $key . ': ';
|
|
|
|
$lines = explode("\n", $this->dump($value));
|
|
|
|
$r .= array_shift($lines);
|
|
foreach ($lines as $line) {
|
|
$r .= "\n" . ' ' . $line;
|
|
}
|
|
}
|
|
|
|
return $r . "\n" . ')';
|
|
} elseif (null === $node) {
|
|
return 'null';
|
|
} elseif (false === $node) {
|
|
return 'false';
|
|
} elseif (true === $node) {
|
|
return 'true';
|
|
} elseif (is_scalar($node)) {
|
|
return $node;
|
|
} else {
|
|
throw new InvalidArgumentException('Unexpected node type.');
|
|
}
|
|
}
|
|
} |