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