private static bool IsWhitespace(UtokenBase utoken)
 {
     return utoken is UtokenWhitespace;
 }
 private static bool IsControl(UtokenBase utoken)
 {
     return utoken is UtokenControl;
 }
 private static bool IsLineSeparator(UtokenBase utoken)
 {
     return utoken.IsNewLine() || utoken.IsEmptyLine() || utoken == null;
 }