Example #1
0
 // DelStmt
 public override void PostWalk(DelStmt node)
 {
     foreach (Expr e in node.exprs)
     {
         e.Walk(fdel);
     }
 }
Example #2
0
 // DelStmt
 public override bool Walk(DelStmt node)
 {
     foreach (Expr e in node.exprs)
     {
         e.Walk(delete);
     }
     return(true);
 }
 public virtual void PostWalk(DelStmt node)
 {
 }
 // DelStmt
 public virtual bool Walk(DelStmt node)
 {
     return(false);
 }
 // DelStmt
 public virtual bool Walk(DelStmt node)
 {
     return(true);
 }