private function getNext(Node $node = null)
 {
     if ($node instanceof Node) {
         return $node instanceof AbstractBlock && $node->endsWithBlankLine() ? null : $node->next();
     }
 }