public override void visit(BitwiseLeftShiftExp n) { n.Scope = Scope; n.e1.accept(this); n.e2.accept(this); }
public void visit(BitwiseLeftShiftExp n) { throw new NotImplementedException(); }
public ASTType visit(BitwiseLeftShiftExp n) { return CheckTypes(n); }