jscript: Added Math.pow implementation.
This commit is contained in:
parent
37b69e9a9e
commit
c4fe1b2efd
|
@ -272,13 +272,33 @@ static HRESULT Math_min(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *d
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* ECMA-262 3rd Edition 15.8.2.13 */
|
||||||
static HRESULT Math_pow(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
static HRESULT Math_pow(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||||
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
VARIANT x, y;
|
||||||
|
HRESULT hres;
|
||||||
|
|
||||||
|
TRACE("\n");
|
||||||
|
|
||||||
|
if(arg_cnt(dp) < 2) {
|
||||||
|
FIXME("unimplemented arg_cnt %d\n", arg_cnt(dp));
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hres = to_number(dispex->ctx, get_arg(dp, 0), ei, &x);
|
||||||
|
if(FAILED(hres))
|
||||||
|
return hres;
|
||||||
|
|
||||||
|
hres = to_number(dispex->ctx, get_arg(dp, 1), ei, &y);
|
||||||
|
if(FAILED(hres))
|
||||||
|
return hres;
|
||||||
|
|
||||||
|
if(retv)
|
||||||
|
num_set_val(retv, pow(num_val(&x), num_val(&y)));
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
|
||||||
static HRESULT Math_random(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
static HRESULT Math_random(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAMS *dp,
|
||||||
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp)
|
||||||
{
|
{
|
||||||
|
|
|
@ -291,4 +291,13 @@ ok(tmp === 1, "Math.abs(true) = " + tmp);
|
||||||
tmp = Math.abs(-3, 2);
|
tmp = Math.abs(-3, 2);
|
||||||
ok(tmp === 3, "Math.abs(-3, 2) = " + tmp);
|
ok(tmp === 3, "Math.abs(-3, 2) = " + tmp);
|
||||||
|
|
||||||
|
tmp = Math.pow(2, 2);
|
||||||
|
ok(tmp === 4, "Math.pow(2, 2) = " + tmp);
|
||||||
|
|
||||||
|
tmp = Math.pow(4, 0.5);
|
||||||
|
ok(tmp === 2, "Math.pow(2, 2) = " + tmp);
|
||||||
|
|
||||||
|
tmp = Math.pow(2, 2, 3);
|
||||||
|
ok(tmp === 4, "Math.pow(2, 2, 3) = " + tmp);
|
||||||
|
|
||||||
reportSuccess();
|
reportSuccess();
|
||||||
|
|
Loading…
Reference in New Issue