using System; using System.Collections.Generic; using System.Text; namespace Larkdown.Parser.Lexer { public enum TokenType { Eof = 0, Empty, Indentation, Text, } }