Ejemplo n.º 1
0
 public virtual void VisitCatch(ICatch operation)
 {
     DefaultVisit(operation);
 }
Ejemplo n.º 2
0
 public virtual void VisitCatch(ICatch operation)
 {
     DefaultVisit(operation);
 }
Ejemplo n.º 3
0
 public TryStatement MakeTryStatement(IStatement statement, ICatch catchClause, IFinally finallyClause)
 {
   return new TryStatement((Statement)statement, (CatchClause)catchClause, (FinallyClause)finallyClause);
 }
Ejemplo n.º 4
0
 public bool Equals(ICatch other)
 {
     return(Equals(other as Catch));
 }
Ejemplo n.º 5
0
 public override void VisitCatch(ICatch operation)
 {
     Visit(operation.Filter);
     Visit(operation.Handler);
 }
Ejemplo n.º 6
0
 public TryStatement MakeTryStatement(IStatement statement, ICatch catchClause, IFinally finallyClause)
 {
     return(new TryStatement((Statement)statement, (CatchClause)catchClause, (FinallyClause)finallyClause));
 }