public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent) // [henon] parent needed because we cannot access outer instances in C# { _walk = w; _held = new FIFORevQueue(); _source = s; _source.shareFreeList(_held); _parent = parent; }
public DateRevQueue(Generator s) { while (true) { RevCommit c = s.next(); if (c == null) break; add(c); } }
public LIFORevQueue(Generator s) : base(s) { }
public BoundaryGenerator(RevWalk w, Generator s) { _generator = new InitialGenerator(w, s, this); }
// [henon] parent needed because we cannot access outer instances in C# public InitialGenerator(RevWalk w, Generator s, BoundaryGenerator parent) { _walk = w; _held = new FIFORevQueue(); _source = s; _source.shareFreeList(_held); _parent = parent; }