Ejemplo n.º 1
0
 public bool IsComment(MmlCharactorType ct) {
     return (
         ct == MmlCharactorType.CommentStart ||
         ct == MmlCharactorType.CommentEnd ||
         ct == MmlCharactorType.CommentLine
     );
 }
Ejemplo n.º 2
0
 public bool IsSpace(MmlCharactorType ct) {
     return ct == MmlCharactorType.Space;
 }
Ejemplo n.º 3
0
 public bool IsSeparator(MmlCharactorType ct) {
     return ct == MmlCharactorType.Separator;
 }
Ejemplo n.º 4
0
 public bool IsLineEnd(MmlCharactorType ct) {
     return (
         ct == MmlCharactorType.NextLine ||
         ct == MmlCharactorType.Eof
     );
 }