Subversion Repositories JSX

Compare Revisions

Last modification

Ignore whitespace Rev 639 → Rev 640

/trunk/math/integer.js
207,7 → 207,7
{
result = 0;
// [Exception] <- [MathErrorException] <- [OverflowException] }
throwException(new Math.OverflowError("fac"));
jsx.throwThis(new Math.OverflowError("fac"));
break;
}
}
279,7 → 279,7
{
result = Number.NaN;
/* [Exception]<- [Math.MathError] <- [Math.InvalidArgumentError] */
throwException(new Math.InvalidArgumentError(
jsx.throwThis(new Math.InvalidArgumentError(
"power(" + nBase + ", " + nExponent + ")"));
}
}
286,7 → 286,7
else if (nBase == 0 && nExponent == 0)
{
result = 0;
throwException(new Math.InvalidArgumentError(
jsx.throwThis(new Math.InvalidArgumentError(
"power(" + nBase + ", " + nExponent + ")"));
}
}