public override void visit(ModuloExp n)
 {
     n.Scope = Scope;
     n.e1.accept(this);
     n.e2.accept(this);
 }
 public void visit(ModuloExp n)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public ASTType visit(ModuloExp n)
 {
     throw new NotImplementedException();
 }