} else if (typeExpr.sameType(typeConstants.getStringType())) {
newVal = newVal.replace(ListOfCharValueNode.CHAR_RETURN_REPLACE, '\n');
valueEntryPanel.replaceValueNode(new LiteralValueNode(newVal, typeExpr.copyTypeExpr()), true);
} else if (typeExpr.sameType(typeConstants.getCharListType())) {
// First, must replace the return replacement chars with return.
newVal = newVal.replace(ListOfCharValueNode.CHAR_RETURN_REPLACE, '\n');
valueEntryPanel.replaceValueNode(new ListOfCharValueNode(newVal, typeExpr.copyTypeExpr()), true);