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
d0be3621
Commit
d0be3621
authored
12 years ago
by
Jacek Caban
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added parameterized member assignment statement implementation.
parent
1bc8db60
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
interp.c
dlls/vbscript/interp.c
+1
-6
run.c
dlls/vbscript/tests/run.c
+6
-0
No files found.
dlls/vbscript/interp.c
View file @
d0be3621
...
...
@@ -682,11 +682,6 @@ static HRESULT interp_assign_member(exec_ctx_t *ctx)
TRACE
(
"%s
\n
"
,
debugstr_w
(
identifier
));
if
(
arg_cnt
)
{
FIXME
(
"arguments not supported
\n
"
);
return
E_NOTIMPL
;
}
hres
=
stack_assume_disp
(
ctx
,
arg_cnt
+
1
,
&
obj
);
if
(
FAILED
(
hres
))
return
hres
;
...
...
@@ -708,7 +703,7 @@ static HRESULT interp_assign_member(exec_ctx_t *ctx)
if
(
FAILED
(
hres
))
return
hres
;
stack_popn
(
ctx
,
2
);
stack_popn
(
ctx
,
arg_cnt
+
2
);
return
S_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
dlls/vbscript/tests/run.c
View file @
d0be3621
...
...
@@ -1288,6 +1288,12 @@ static void run_tests(void)
CHECK_CALLED
(
global_propargput_d
);
CHECK_CALLED
(
global_propargput_i
);
SET_EXPECT
(
global_propargput_d
);
SET_EXPECT
(
global_propargput_i
);
parse_script_a
(
"test.propargput(counter(), counter()) = counter()"
);
CHECK_CALLED
(
global_propargput_d
);
CHECK_CALLED
(
global_propargput_i
);
parse_script_a
(
"x = 1
\n
Call ok(x = 1,
\"
x =
\"
& x)"
);
parse_script_a
(
"x = _
\n
3"
);
...
...
This diff is collapsed.
Click to expand it.
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