Example #1
0
 public ParseTimeBlock(ParseTimeBlock next)
 {
     Labels = new List <ParseTimeLabel>();
     Next   = next;
 }
Example #2
0
 public void PushBlock()
 {
     CurrentBlock = new ParseTimeBlock(CurrentBlock);
 }