Example #1
0
 public constDeclAST(typeAST tp, Symbol d)
 {
     this.tipo = tp;
     this.symb = d;
 }
Example #2
0
 public varDeclAST(typeAST t, identListAST l)
 {
     tipo      = t;
     identList = l;
 }
Example #3
0
 public unTipoIdentAST(Symbol s, typeAST t)
 {
     ident = s;
     tipo  = t;
 }