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.
Ejemplo n.º 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;
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 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)
 {
 }
Ejemplo n.º 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;
 }