コード例 #1
0
 public Grammar(Grammar parent, ExpBuilder builder) : base(null)
 {
     this.Parent  = parent;
     this.Builder = builder;
 }
コード例 #2
0
 public Grammar(ExpBuilder builder) : this(null, builder)
 {
 }
コード例 #3
0
 public Grammar(string name, Expression top,
                ExpBuilder builder, Grammar parent) : base(name, top)
 {
     this.Parent  = parent;
     this.Builder = builder;
 }