public void AddDestruction(AstStatement dest) { if (dest == null) { return; } if (Destructions == null) { Destructions = new List <AstStatement>(); } Destructions.Add(dest); }
public AstDeferStmt(AstStatement deferred, List <AstDirective> Directives = null, ILocation Location = null) : base(Directives, Location) { this.Deferred = deferred; }