public void visit(TupleElementList n)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public abstract void visit(TupleElementList n);
 public override void visit(TupleElementList n)
 {
     n.Scope = Scope;
     foreach (ITupleParentElement element in n.List)
         element.Scope = Scope;
 }