/// <summary>
 /// Gets the comments contained in the sheet, if any.
 /// </summary>
 /// <param name="node">The node to examine.</param>
 /// <returns>An iterator over all comments.</returns>
 public static IEnumerable <ICssComment> GetComments(this ICssNode node)
 {
     return(node.GetAll <ICssComment>());
 }