TokenType.cs 185 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Larkdown.Parser.Lexer
  5. {
  6. public enum TokenType
  7. {
  8. Eof = 0,
  9. Empty,
  10. Indentation,
  11. Text,
  12. }
  13. }