Example #1
0
			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;
			}
Example #2
0
		public DateRevQueue(Generator s)
		{
			while (true)
			{
				RevCommit c = s.next();
				if (c == null) break;
				add(c);
			}
		}
 public LIFORevQueue(Generator s)
     : base(s)
 {
 }
Example #4
0
		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;
 }