Overrides NodeVisitorAbstract::enterNode
public function enterNode(Node $node) : void { $this->comments = array_merge($this->comments, $node->getComments()); if (!$node instanceof Expr) { return; } $this->linesWithStatements[] = $node->getStartLine(); }