Esempio n. 1
0
 private static bool IsWhitespace(UtokenBase utoken)
 {
     return utoken is UtokenWhitespace;
 }
Esempio n. 2
0
 private static bool IsControl(UtokenBase utoken)
 {
     return utoken is UtokenControl;
 }
Esempio n. 3
0
 private static bool IsLineSeparator(UtokenBase utoken)
 {
     return utoken.IsNewLine() || utoken.IsEmptyLine() || utoken == null;
 }