9899100101102103104105
public void caseANeExpression(ANeExpression node) { super.caseANeExpression(node); PExpression lhs = node.getLeft(); PExpression rhs = node.getRight(); if (isNumeric(lhs) || isNumeric(rhs)) { node.replaceBy(new ANumericNeExpression(lhs, rhs)); } }