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