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
ee2111b5
Commit
ee2111b5
authored
Jan 09, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Make some engine functions static.
parent
528c7bef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
engine.c
dlls/jscript/engine.c
+5
-5
No files found.
dlls/jscript/engine.c
View file @
ee2111b5
...
...
@@ -641,7 +641,7 @@ static HRESULT interp_forin(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 12.10 */
HRESULT
interp_push_scope
(
exec_ctx_t
*
ctx
)
static
HRESULT
interp_push_scope
(
exec_ctx_t
*
ctx
)
{
IDispatch
*
disp
;
jsdisp_t
*
obj
;
...
...
@@ -669,7 +669,7 @@ HRESULT interp_push_scope(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 12.10 */
HRESULT
interp_pop_scope
(
exec_ctx_t
*
ctx
)
static
HRESULT
interp_pop_scope
(
exec_ctx_t
*
ctx
)
{
TRACE
(
"
\n
"
);
...
...
@@ -678,7 +678,7 @@ HRESULT interp_pop_scope(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 12.12 */
HRESULT
interp_label
(
exec_ctx_t
*
ctx
)
static
HRESULT
interp_label
(
exec_ctx_t
*
ctx
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
...
...
@@ -1241,7 +1241,7 @@ static HRESULT interp_carray(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 11.1.5 */
HRESULT
interp_new_obj
(
exec_ctx_t
*
ctx
)
static
HRESULT
interp_new_obj
(
exec_ctx_t
*
ctx
)
{
jsdisp_t
*
obj
;
VARIANT
v
;
...
...
@@ -1258,7 +1258,7 @@ HRESULT interp_new_obj(exec_ctx_t *ctx)
}
/* ECMA-262 3rd Edition 11.1.5 */
HRESULT
interp_obj_prop
(
exec_ctx_t
*
ctx
)
static
HRESULT
interp_obj_prop
(
exec_ctx_t
*
ctx
)
{
const
BSTR
name
=
ctx
->
parser
->
code
->
instrs
[
ctx
->
ip
].
arg1
.
bstr
;
jsdisp_t
*
obj
;
...
...
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