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
c745826e
Commit
c745826e
authored
Aug 17, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Fixed Object's function lengths.
parent
ca729836
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
object.c
dlls/jscript/object.c
+3
-3
api.js
dlls/jscript/tests/api.js
+9
-0
No files found.
dlls/jscript/object.c
View file @
c745826e
...
...
@@ -145,9 +145,9 @@ static void Object_destructor(DispatchEx *dispex)
}
static
const
builtin_prop_t
Object_props
[]
=
{
{
hasOwnPropertyW
,
Object_hasOwnProperty
,
PROPF_METHOD
},
{
isPrototypeOfW
,
Object_isPrototypeOf
,
PROPF_METHOD
},
{
propertyIsEnumerableW
,
Object_propertyIsEnumerable
,
PROPF_METHOD
},
{
hasOwnPropertyW
,
Object_hasOwnProperty
,
PROPF_METHOD
|
1
},
{
isPrototypeOfW
,
Object_isPrototypeOf
,
PROPF_METHOD
|
1
},
{
propertyIsEnumerableW
,
Object_propertyIsEnumerable
,
PROPF_METHOD
|
1
},
{
toLocaleStringW
,
Object_toLocaleString
,
PROPF_METHOD
},
{
toStringW
,
Object_toString
,
PROPF_METHOD
},
{
valueOfW
,
Object_valueOf
,
PROPF_METHOD
}
...
...
dlls/jscript/tests/api.js
View file @
c745826e
...
...
@@ -1543,4 +1543,13 @@ testFunctions(Math, [
[
"tan"
,
1
]
]);
testFunctions
(
Object
.
prototype
,
[
[
"hasOwnProperty"
,
1
],
[
"isPrototypeOf"
,
1
],
[
"propertyIsEnumerable"
,
1
],
[
"toLocaleString"
,
0
],
[
"toString"
,
0
],
[
"valueOf"
,
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