jscript: Added '>>=' expression implementation.
This commit is contained in:
parent
701797489d
commit
bc641097a9
|
@ -2880,10 +2880,14 @@ HRESULT assign_lshift_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWOR
|
|||
return assign_oper_eval(ctx, expr->expression1, expr->expression2, lshift_eval, ei, ret);
|
||||
}
|
||||
|
||||
HRESULT assign_rshift_expression_eval(exec_ctx_t *ctx, expression_t *expr, DWORD flags, jsexcept_t *ei, exprval_t *ret)
|
||||
/* ECMA-262 3rd Edition 11.13.2 */
|
||||
HRESULT assign_rshift_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD flags, jsexcept_t *ei, exprval_t *ret)
|
||||
{
|
||||
FIXME("\n");
|
||||
return E_NOTIMPL;
|
||||
binary_expression_t *expr = (binary_expression_t*)_expr;
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
return assign_oper_eval(ctx, expr->expression1, expr->expression2, rshift_eval, ei, ret);
|
||||
}
|
||||
|
||||
HRESULT assign_rrshift_expression_eval(exec_ctx_t *ctx, expression_t *expr, DWORD flags, jsexcept_t *ei, exprval_t *ret)
|
||||
|
|
|
@ -249,6 +249,9 @@ ok(tmp === 2.5, "tmp !=== 2.5");
|
|||
tmp = 8;
|
||||
ok((tmp <<= 1) === 16, "tmp <<= 1 !== 16");
|
||||
|
||||
tmp = 8;
|
||||
ok((tmp >>= 1) === 4, "tmp >>= 1 !== 4");
|
||||
|
||||
tmp = 3 || ok(false, "second or expression called");
|
||||
ok(tmp === 3, "3 || (...) is not 3");
|
||||
|
||||
|
|
Loading…
Reference in New Issue