// Set constructor. public VarDecStatementASTNode(TypeASTNode type, IDASTNode id) : this() { this.type = type; this.id = id; }
// Default costructor, inits values public VarDecStatementASTNode() : base(ASTNodeType.ASTTYPE_VARDEC) { id = null; type = null; }