示例#1
0
 public override void Accept(WithStatement with)
 {
     with.VisitChildren(this);
 }
示例#2
0
 public override void Accept(WithStatement withStmt)
 {
     symbolTable.BeginScope();
     withStmt.VisitChildren(this);
     symbolTable.EndScope();
 }