1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-20 12:46:47 +01:00

Optimize node dumper

For very deeply nested node trees this extra concatenation makes a
huge difference...
This commit is contained in:
Nikita Popov 2015-02-13 15:20:25 +01:00
parent 8f1eacdab7
commit b7ffdbbb92

View File

@ -36,6 +36,6 @@ class NodeDumper
}
}
return $r . "\n" . ')';
return $r . "\n)";
}
}
}