おそらく、この質問はあまり建設的ではありませんが、この構文エラーが発生する理由を理解できるようです:
var operations = function () {
function computeTotalPrice(elem) {
var totalpriceafter = 0;
$(".totalForProductNotDeleted").each(function () {
var pp = parseFloat($(this).html().toString().replace(",", "."));
totalpriceafter += pp;
});
return totalpriceafter;
};
function HightLightChangedPrices(elem) {
elem.parent().parent().parent().find(".totalForProduct").effect("highlight");
$("#totalPrice").effect("highlight");
};
return
{
computeTotalPrice : computeTotalPrice,
HightLightChangedPrices : HightLightChangedPrices / I get expected ;
};
};