Example #1
0
 public unAddopTermAST(addopAST a, termAST t)
 {
     addop = a;
     term  = t;
 }
 public exprNegativaTermAST(termAST t)
 {
     term = t;
 }
Example #3
0
 public expreSoloTermAST(termAST t)
 {
     term=t;
 }
Example #4
0
 public exprAddopTermAST(termAST t, listAddopTermAST l)
 {
     listAddopTerm = l;
     term          = t;
 }
Example #5
0
 public exprNegativaTermAST(termAST t)
 {
     term = t;
 }
Example #6
0
 public exprNegativaAddopTermAST(listAddopTermAST l, termAST t)
 {
     listAddopTerm = l;
     term          = t;
 }
Example #7
0
 public expreSoloTermAST(termAST t)
 {
     term = t;
 }
 public exprNegativaAddopTermAST(listAddopTermAST l, termAST t)
 {
     listAddopTerm = l;
     term = t;
 }