ConstraintBuilder maintains the stacks that are used in processing a ConstraintExpression. An OperatorStack is used to hold operators that are waiting for their operands to be reognized. a ConstraintStack holds input constraints as well as the results of each operator applied.
Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
 /// </summary>
 /// <param name="builder">The builder.</param>
 public ConstraintStack(ConstraintBuilder builder)
 {
     this.builder = builder;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:OperatorStack"/> class.
 /// </summary>
 /// <param name="builder">The builder.</param>
 public OperatorStack(ConstraintBuilder builder)
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:OperatorStack"/> class.
 /// </summary>
 /// <param name="builder">The builder.</param>
 public OperatorStack(ConstraintBuilder builder)
 {
 }
Exemple #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:ConstraintExpression"/>
 /// class passing in a ConstraintBuilder, which may be pre-populated.
 /// </summary>
 /// <param name="builder">The builder.</param>
 public ConstraintExpression(ConstraintBuilder builder)
     : base(builder)
 {
 }
Exemple #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
 /// </summary>
 /// <param name="builder">The builder.</param>
 public ConstraintStack(ConstraintBuilder builder)
 {
     this.builder = builder;
 }