Example #1
0
 public ReadNode(IDNode iDNode)
 {
     this.iDNode = iDNode;
 }
Example #2
0
 public AssignNode(IDNode idLexema, ExpressionNode eValor)
 {
     this.id     = idLexema;
     this.eValor = eValor;
 }
 public DeclarationStatement(VarTypeNode varType, IDNode varID, List <int> rankSpecifier)
 {
     this.varType       = varType;
     this.varID         = varID;
     this.rankSpecifier = rankSpecifier;
 }