Searched refs:STOP_TRAVERSAL (Results 1 – 8 of 8) sorted by relevance
/PHP-Parser/lib/PhpParser/ |
H A D | NodeTraverser.php | 14 public const STOP_TRAVERSAL = NodeVisitor::STOP_TRAVERSAL; define in PhpParser\\NodeTraverser 117 } elseif (NodeVisitor::STOP_TRAVERSAL === $return) { 146 } elseif (NodeVisitor::STOP_TRAVERSAL === $return) { 200 } elseif (NodeVisitor::STOP_TRAVERSAL === $return) { 235 } elseif (NodeVisitor::STOP_TRAVERSAL === $return) {
|
H A D | NodeVisitor.php | 21 public const STOP_TRAVERSAL = 2; define
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | FirstFindingVisitor.php | 44 return NodeVisitor::STOP_TRAVERSAL;
|
H A D | CommentAnnotatingVisitor.php | 39 return self::STOP_TRAVERSAL;
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeTraverserTest.php | 267 ['enterNode', $mulNode, NodeVisitor::STOP_TRAVERSAL], 280 ['enterNode', $varNode1, NodeVisitor::STOP_TRAVERSAL], 294 ['leaveNode', $varNode1, NodeVisitor::STOP_TRAVERSAL], 309 ['leaveNode', $mulNode, NodeVisitor::STOP_TRAVERSAL], 328 ['enterNode', $printNode, NodeVisitor::STOP_TRAVERSAL],
|
/PHP-Parser/doc/component/ |
H A D | Walking_the_AST.markdown | 245 return NodeVisitor::STOP_TRAVERSAL; 311 * If *any* visitor returns `STOP_TRAVERSAL`, traversal is stopped for *all* visitors.
|
/PHP-Parser/ |
H A D | UPGRADE-5.0.md | 457 PhpParser\NodeTraverser::STOP_TRAVERSAL -> PhpParser\NodeVisitor::STOP_TRAVERSAL
|
/PHP-Parser/doc/ |
H A D | 2_Usage_of_basic_components.markdown | 358 * `NodeVisitor::STOP_TRAVERSAL`, in which case no further nodes will be visited.
|
Completed in 14 milliseconds