| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Larkdown.Parser.Lexer
- {
- class BlockToken
- {
- public BlockTokenType Type { get; }
- public int Indentation { get; }
- public string Content { get; }
- public BlockToken(BlockTokenType type, int indent, string content)
- {
- Type = type;
- Indentation = indent;
- Content = content;
- }
- }
- }
|