Exemple #1
0
 public virtual void VisitFixedStatement(FixedStatement node)
 {
     this.Visit(node.get_Expression());
     this.Visit(node.get_Body());
     return;
 }
 public virtual ICodeNode VisitFixedStatement(FixedStatement node)
 {
     node.set_Expression((Expression)this.Visit(node.get_Expression()));
     node.set_Body((BlockStatement)this.Visit(node.get_Body()));
     return(node);
 }