public PegNode(PegNode parent, int id, PegMatch match, PegNode child, PegNode next) { Parent = parent; Id = id; Child = child; Next = next; Match = match; }
public PegNode(PegNode parent, int id, PegMatch match) : this(parent, id, match, null, null) { }
public PegNode(PegNode parent, int id, PegMatch match, PegNode child) : this(parent, id, match, child, null) { }