/opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser
NameSizeModeActions
Builder/-0755rm
Comment/-0755rm
ErrorHandler/-0755rm
Internal/-0755rm
Lexer/-0755rm
Node/-0755rm
NodeVisitor/-0755rm
Parser/-0755rm
PrettyPrinter/-0755rm
Builder.php2020644editdlrm
BuilderFactory.php105490644editdlrm
BuilderHelpers.php99620644editdlrm
Comment.php69070644editdlrm
compatibility_tokens.php25150644editdlrm
ConstExprEvaluationException.php1120644editdlrm
ConstExprEvaluator.php94980644editdlrm
Error.php49520644editdlrm
ErrorHandler.php3000644editdlrm
JsonDecoder.php35200644editdlrm
Lexer.php43660644editdlrm
Modifiers.php27790644editdlrm
NameContext.php100530644editdlrm
Node.php41220644editdlrm
NodeAbstract.php53700644editdlrm
NodeDumper.php104850644editdlrm
NodeFinder.php26070644editdlrm
NodeTraverser.php103310644editdlrm
NodeTraverserInterface.php5980644editdlrm
NodeVisitor.php41790644editdlrm
NodeVisitorAbstract.php4470644editdlrm
Parser.php7650644editdlrm
ParserAbstract.php530800644editdlrm
ParserFactory.php14480644editdlrm
PhpVersion.php48410644editdlrm
PrettyPrinter.php16990644editdlrm
PrettyPrinterAbstract.php738170644editdlrm
Token.php4870644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php (4179B)
$node stays as-is * * array (of Nodes) * => The return value is merged into the parent array (at the position of the $node) * * NodeVisitor::REMOVE_NODE * => $node is removed from the parent array * * NodeVisitor::REPLACE_WITH_NULL * => $node is replaced with null * * NodeVisitor::DONT_TRAVERSE_CHILDREN * => Children of $node are not traversed. $node stays as-is * * NodeVisitor::DONT_TRAVERSE_CURRENT_AND_CHILDREN * => Further visitors for the current node are skipped, and its children are not * traversed. $node stays as-is. * * NodeVisitor::STOP_TRAVERSAL * => Traversal is aborted. $node stays as-is * * otherwise * => $node is set to the return value * * @param Node $node Node * * @return null|int|Node|Node[] Replacement node (or special return value) */ public function enterNode(Node $node); /** * Called when leaving a node. * * Return value semantics: * * null * => $node stays as-is * * NodeVisitor::REMOVE_NODE * => $node is removed from the parent array * * NodeVisitor::REPLACE_WITH_NULL * => $node is replaced with null * * NodeVisitor::STOP_TRAVERSAL * => Traversal is aborted. $node stays as-is * * array (of Nodes) * => The return value is merged into the parent array (at the position of the $node) * * otherwise * => $node is set to the return value * * @param Node $node Node * * @return null|int|Node|Node[] Replacement node (or special return value) */ public function leaveNode(Node $node); /** * Called once after traversal. * * Return value semantics: * * null: $nodes stays as-is * * otherwise: $nodes is set to the return value * * @param Node[] $nodes Array of nodes * * @return null|Node[] Array of nodes */ public function afterTraverse(array $nodes); }