Exemplo n.º 1
0
 public override void Accept(WithStatement with)
 {
     with.VisitChildren(this);
 }
Exemplo n.º 2
0
 public override void Accept(WithStatement withStmt)
 {
     symbolTable.BeginScope();
     withStmt.VisitChildren(this);
     symbolTable.EndScope();
 }