示例#1
0
 public virtual void VisitThrow(Throw Throw)
 {
   if (Throw == null) return;
   this.VisitExpression(Throw.Expression);
 }
示例#2
0
 public virtual Statement VisitThrow(Throw Throw){
   if (Throw == null) return null;
   Throw.Expression = this.VisitExpression(Throw.Expression);
   return Throw;
 }
示例#3
0
 public override Statement VisitThrow(Throw Throw)
 {
     if (Throw == null) return null;
     return base.VisitThrow((Throw)Throw.Clone());
 }