The base class for every binary operator.
The copy method is mixed in here, not in any derived class. If a derived class has other nodes than lhs and rhs, then it has to have its own copy method which handles additional nodes.
Constructs a BinaryExpr object.
Left-hand side expression.
The operator token.
Right-hand side expression.
See Implementation
The base class for every binary operator.
The copy method is mixed in here, not in any derived class. If a derived class has other nodes than lhs and rhs, then it has to have its own copy method which handles additional nodes.