Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
34356035
Commit
34356035
authored
Sep 19, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Minor fixes.
parent
c1b76a33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
engine.c
dlls/jscript/engine.c
+8
-2
No files found.
dlls/jscript/engine.c
View file @
34356035
...
...
@@ -1486,6 +1486,7 @@ HRESULT new_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD flags, j
return
S_OK
;
}
/* ECMA-262 3rd Edition 11.2.3 */
HRESULT
call_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
_expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
call_expression_t
*
expr
=
(
call_expression_t
*
)
_expr
;
...
...
@@ -1527,6 +1528,7 @@ HRESULT call_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD flags,
return
S_OK
;
}
/* ECMA-262 3rd Edition 11.1.1 */
HRESULT
this_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
TRACE
(
"
\n
"
);
...
...
@@ -1877,12 +1879,14 @@ HRESULT binary_and_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD f
return
binary_expr_eval
(
ctx
,
expr
,
bitand_eval
,
ei
,
ret
);
}
/* ECMA-262 3rd Edition 11.8.6 */
HRESULT
instanceof_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
}
/* ECMA-262 3rd Edition 11.8.7 */
HRESULT
in_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
FIXME
(
"
\n
"
);
...
...
@@ -2046,6 +2050,7 @@ HRESULT div_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD flags, j
return
binary_expr_eval
(
ctx
,
expr
,
div_eval
,
ei
,
ret
);
}
/* ECMA-262 3rd Edition 11.5.3 */
HRESULT
mod_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
FIXME
(
"
\n
"
);
...
...
@@ -2553,11 +2558,11 @@ HRESULT not_equal2_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD f
TRACE
(
"
\n
"
);
hres
=
get_binary_expr_values
(
ctx
,
expr
,
ei
,
&
rval
,
&
l
val
);
hres
=
get_binary_expr_values
(
ctx
,
expr
,
ei
,
&
lval
,
&
r
val
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
equal2_values
(
&
rval
,
&
l
val
,
&
b
);
hres
=
equal2_values
(
&
lval
,
&
r
val
,
&
b
);
if
(
FAILED
(
hres
))
return
hres
;
...
...
@@ -2940,6 +2945,7 @@ HRESULT assign_div_expression_eval(exec_ctx_t *ctx, expression_t *_expr, DWORD f
return
assign_oper_eval
(
ctx
,
expr
->
expression1
,
expr
->
expression2
,
div_eval
,
ei
,
ret
);
}
/* ECMA-262 3rd Edition 11.13.2 */
HRESULT
assign_mod_expression_eval
(
exec_ctx_t
*
ctx
,
expression_t
*
expr
,
DWORD
flags
,
jsexcept_t
*
ei
,
exprval_t
*
ret
)
{
FIXME
(
"
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment