protected function getFirstChildIfTag(NodeAbstract $node)
 {
     if (!$node instanceof NestInterface) {
         return;
     }
     if (null === ($first = $node->getFirstChild())) {
         return;
     }
     if (!$first instanceof Tag) {
         return;
     }
     return $first;
 }