| 1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Larkdown.Parser.Ast
- {
- public abstract class BlockNode : Node
- {
- public int Indent { get; }
- protected BlockNode(string type, int indent)
- : base(type)
- {
- Indent = indent;
- }
- }
- }
|