Searched refs:astNode (Results 1 – 2 of 2) sorted by relevance
42 public function visitEnter(Ast\Node $astNode): bool { argument43 if ($method = $this->getMethodByClass($astNode, 'visitEnter')) {44 return $method($astNode);54 public function visit(Ast\Node $astNode): void { argument55 if ($method = $this->getMethodByClass($astNode)) {56 $method($astNode);66 public function visitLeave(Ast\Node $astNode): void { argument67 if ($method = $this->getMethodByClass($astNode, 'visitLeave')) {68 $method($astNode);
21 * @param Node $astNode23 public function visit(Node $astNode): void; argument28 * @param Node $astNode31 public function visitEnter(Node $astNode): bool; argument36 * @param Node $astNode38 public function visitLeave(Node $astNode): void; argument