We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4210eb1 commit ed09b38Copy full SHA for ed09b38
util.php
@@ -64,12 +64,6 @@ function ast_dump($ast, int $options = 0) : string {
64
if (ast\kind_uses_flags($ast->kind) || $ast->flags != 0) {
65
$result .= "\n flags: " . format_flags($ast->kind, $ast->flags);
66
}
67
- if (isset($ast->name)) {
68
- $result .= "\n name: $ast->name";
69
- }
70
- if (isset($ast->docComment)) {
71
- $result .= "\n docComment: $ast->docComment";
72
73
foreach ($ast->children as $i => $child) {
74
$result .= "\n $i: " . str_replace("\n", "\n ", ast_dump($child, $options));
75
0 commit comments