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
0091b3fb
Commit
0091b3fb
authored
Aug 23, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Fixed Function method's lengths.
parent
7701acc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
function.c
dlls/jscript/function.c
+2
-2
api.js
dlls/jscript/tests/api.js
+6
-0
No files found.
dlls/jscript/function.c
View file @
0091b3fb
...
...
@@ -360,8 +360,8 @@ static void Function_destructor(DispatchEx *dispex)
}
static
const
builtin_prop_t
Function_props
[]
=
{
{
applyW
,
Function_apply
,
PROPF_METHOD
},
{
callW
,
Function_call
,
PROPF_METHOD
},
{
applyW
,
Function_apply
,
PROPF_METHOD
|
2
},
{
callW
,
Function_call
,
PROPF_METHOD
|
1
},
{
lengthW
,
Function_length
,
0
},
{
toStringW
,
Function_toString
,
PROPF_METHOD
}
};
...
...
dlls/jscript/tests/api.js
View file @
0091b3fb
...
...
@@ -1552,4 +1552,10 @@ testFunctions(Object.prototype, [
[
"valueOf"
,
0
]
]);
testFunctions
(
Function
.
prototype
,
[
[
"apply"
,
2
],
[
"call"
,
1
],
[
"toString"
,
0
]
]);
reportSuccess
();
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