Пример #1
0
 // Set constructor.
 public VarDecStatementASTNode(TypeASTNode type, IDASTNode id)
     : this()
 {
     this.type = type;
     this.id   = id;
 }
Пример #2
0
 // Default costructor, inits values
 public VarDecStatementASTNode()
     : base(ASTNodeType.ASTTYPE_VARDEC)
 {
     id   = null;
     type = null;
 }