Esempio n. 1
0
 public PegNode(PegNode parent, int id, PegMatch match, PegNode child, PegNode next)
 {
     Parent = parent;
     Id = id;
     Child = child;
     Next = next;
     Match = match;
 }
Esempio n. 2
0
 public PegNode(PegNode parent, int id, PegMatch match)
     : this(parent, id, match, null, null)
 {
 }
Esempio n. 3
0
 public PegNode(PegNode parent, int id, PegMatch match, PegNode child)
     : this(parent, id, match, child, null)
 {
 }