8889909192939495
public void caseAEqExpression(AEqExpression node) { super.caseAEqExpression(node); PExpression lhs = node.getLeft(); PExpression rhs = node.getRight(); if (isNumeric(lhs) || isNumeric(rhs)) { node.replaceBy(new ANumericEqExpression(lhs, rhs)); } }