Inheritance: InteriorNode
 private SyntaxTreeNode NewStar(SyntaxTreeNode leftChild) {
     InteriorNode star = new StarNode();
     star.LeftChild = leftChild;
     return star;
 }