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