| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Larkdown.Parser.Lexer
- {
- public class Token
- {
- public TokenType Type { get; }
- public string Content { get; }
- public Token(TokenType type, string content = null)
- {
- Type = type;
- Content = content;
- }
- }
- }
|