/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | CloningVisitor.php | 14 public function enterNode(Node $origNode) { function in PhpParser\\NodeVisitor\\CloningVisitor
|
H A D | FindingVisitor.php | 39 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\FindingVisitor
|
H A D | ParentConnectingVisitor.php | 27 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\ParentConnectingVisitor
|
H A D | FirstFindingVisitor.php | 40 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\FirstFindingVisitor
|
H A D | NodeConnectingVisitor.php | 33 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\NodeConnectingVisitor
|
H A D | CommentAnnotatingVisitor.php | 35 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\CommentAnnotatingVisitor
|
H A D | NameResolver.php | 55 public function enterNode(Node $node) { function in PhpParser\\NodeVisitor\\NameResolver
|
/PHP-Parser/lib/PhpParser/ |
H A D | NodeVisitorAbstract.php | 13 public function enterNode(Node $node) { function in PhpParser\\NodeVisitorAbstract
|
H A D | NodeVisitor.php | 87 public function enterNode(Node $node); function
|
H A D | NodeTraverser.php | 107 $return = $visitor->enterNode($subNode); 184 $return = $visitor->enterNode($node);
|
/PHP-Parser/doc/component/ |
H A D | Walking_the_AST.markdown | 44 public function enterNode(Node $node); 81 enterNode(Expr_FuncCall) 82 enterNode(Name) 84 enterNode(Arg) 85 enterNode(Scalar_String) 131 public function enterNode(Node $node) { 222 public function enterNode(Node $node) { 279 $visitorA->enterNode(Stmt_Return) 280 $visitorB->enterNode(Stmt_Return) 281 $visitorA->enterNode(Expr_Variable) [all …]
|
/PHP-Parser/test/PhpParser/ |
H A D | NodeVisitorForTesting.php | 19 public function enterNode(Node $node) { function in PhpParser\\NodeVisitorForTesting
|
H A D | CodeParsingTest.php | 71 public function enterNode(Node $node): void { function in PhpParser\\CodeParsingTest::checkAttributes::AnonymousClasse7540ba80100
|
/PHP-Parser/ |
H A D | phpstan-baseline.neon | 154 …message: "#^Method PhpParser\\\\NodeVisitor\\\\NodeConnectingVisitor\\:\\:enterNode\\(\\) should r… 169 …message: "#^Method PhpParser\\\\NodeVisitor\\\\ParentConnectingVisitor\\:\\:enterNode\\(\\) should…
|
H A D | UPGRADE-5.0.md | 435 …nd `afterTraverse()` methods in the reverse order of the corresponding `enterNode()` and `beforeTr… 439 $visitor1->enterNode($node); 440 $visitor2->enterNode($node); 445 $visitor1->enterNode($node); 446 $visitor2->enterNode($node);
|
H A D | README.md | 125 public function enterNode(Node $node) {
|
H A D | CHANGELOG.md | 175 * The `leaveNode()` method on visitors is now invoked in reverse order of `enterNode()`. 256 * Added support for returning an array or `REMOVE_NODE` from `NodeVisitor::enterNode()`.
|
/PHP-Parser/doc/ |
H A D | 2_Usage_of_basic_components.markdown | 334 public function enterNode(\PhpParser\Node $node); 346 The `enterNode()` and `leaveNode()` methods are called on every node, the former when it is entered, 352 The `enterNode()` method can additionally return the value `NodeVisitor::DONT_TRAVERSE_CHILDREN`,
|