Ejemplo n.º 1
0
 public ExprBuilder Plus(int arg)
 {
     _expr = new Addition(_expr, Constant.Make(arg));
     return(this);
 }
Ejemplo n.º 2
0
 public ExprBuilder Mult(int arg)
 {
     _expr = new Multiplication(_expr, Constant.Make(arg));
     return(this);
 }
Ejemplo n.º 3
0
 public ExprBuilder Const(int arg)
 {
     _expr = Constant.Make(arg);
     return(this);
 }