@Override public void visitBinary(JCBinary node) {
BinaryExpression expr = new BinaryExpression();
expr.rawLeft(toTree(node.getLeftOperand()));
expr.rawRight(toTree(node.getRightOperand()));
expr.astOperator(JcTreeBuilder.BINARY_OPERATORS.inverse().get(getTag(node)));
set(node, expr);
}
@Override public void visitNewClass(JCNewClass node) {
ConstructorInvocation inv = new ConstructorInvocation();