Example #1
0
 public GivenParameterStep(Step previous, GivenParameter description, IParsableFromState thenStep)
     : base(previous)
 {
     Description = description;
     ThenStep    = thenStep;
 }
Example #2
0
 public GivenFlagStep(Step previous, Flag description, IParsableFromState thenStep)
     : base(previous)
 {
     Description = description;
     ThenStep    = thenStep;
 }