private Indentation(int count, AbstractDescriptor descriptor, Indentation parent = null)
 {
     this.count      = count;
     this.parent     = parent;
     this.descriptor = descriptor;
 }
 public Indentation(AbstractDescriptor descriptor) : this(0, descriptor)
 {
 }