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