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; } } }