public ParsingStackElement(Operation value = null, ParsingStackElement next = null)
 {
     this.value = value;
     this.next = next;
 }
 public ParsingStackElement(Operation value = null, ParsingStackElement next = null)
 {
     this.value = value;
     this.next  = next;
 }