@Override
public void visitBinary(AJCBinary tree) {
super.visitBinary(tree);
// Determine the type of this unary operation.
final Tag nodeTag = tree.getTag();
AJCExpressionTree leftOperand = tree.lhs;
AJCExpressionTree rightOperand = tree.rhs;
// Ensure this is an operation on literals before proceeding.
if (!(leftOperand instanceof AJCLiteral && rightOperand instanceof AJCLiteral)) {