コード例 #1
0
 public void visit(TupleElementList n)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public abstract void visit(TupleElementList n);
コード例 #3
0
 public override void visit(TupleElementList n)
 {
     n.Scope = Scope;
     foreach (ITupleParentElement element in n.List)
         element.Scope = Scope;
 }