Searched refs:REMOVE_NODE (Results 1 – 9 of 9) sorted by relevance
/PHP-Parser/lib/PhpParser/ |
H A D | NodeVisitor.php | 30 public const REMOVE_NODE = 3; define
|
H A D | NodeTraverser.php | 19 public const REMOVE_NODE = NodeVisitor::REMOVE_NODE; define in PhpParser\\NodeTraverser 192 } elseif (NodeVisitor::REMOVE_NODE === $return) { 232 } elseif (NodeVisitor::REMOVE_NODE === $return) {
|
/PHP-Parser/tools/fuzzing/ |
H A D | target.php | 53 return NodeVisitor::REMOVE_NODE;
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeTraverserTest.php | 83 ['leaveNode', $str1Node, NodeVisitor::REMOVE_NODE], 107 ['enterNode', $str1Node, NodeVisitor::REMOVE_NODE], 327 ['leaveNode', $mulNode, NodeVisitor::REMOVE_NODE],
|
/PHP-Parser/ |
H A D | UPGRADE-4.0.md | 68 `NodeTraverser::REMOVE_NODE` should be returned instead.
|
H A D | UPGRADE-5.0.md | 454 PhpParser\NodeTraverser::REMOVE_NODE -> PhpParser\NodeVisitor::REMOVE_NODE
|
H A D | CHANGELOG.md | 176 * Moved `NodeTraverser::REMOVE_NODE` etc. to `NodeVisitor::REMOVE_NODE`. The old constants are still 256 * Added support for returning an array or `REMOVE_NODE` from `NodeVisitor::enterNode()`. 816 `NodeTraverser::REMOVE_NODE` should be returned instead.
|
/PHP-Parser/doc/component/ |
H A D | Walking_the_AST.markdown | 149 return NodeVisitor::REMOVE_NODE; 169 return NodeVisitor::REMOVE_NODE; 314 * If a visitor returns `REMOVE_NODE`, subsequent visitors will not see this node.
|
/PHP-Parser/doc/ |
H A D | 2_Usage_of_basic_components.markdown | 359 * `NodeVisitor::REMOVE_NODE`, in which case the current node will be removed from the parent array. 525 return NodeVisitor::REMOVE_NODE;
|
Completed in 18 milliseconds