public Token(TokenType type, string parser, Stop stop = null) { Parser = new Regex(parser, RegexOptions.Compiled); Type = type; Stop = stop; }