public void caseAAddExpression(AAddExpression node) {
super.caseAAddExpression(node);
PExpression lhs = node.getLeft();
PExpression rhs = node.getRight();
if (isNumeric(lhs) || isNumeric(rhs)) {
node.replaceBy(new ANumericAddExpression(lhs, rhs));
}
}