public static IEnumerable <BlockSyntax> GetSubBlocks(this BlockSyntax block)
 {
     return(block.GetNullableSubBlocks().Where(b => b != null));
 }