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
3b80361a
Commit
3b80361a
authored
Jul 24, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Use prototype for builtin Number properties.
parent
175c4dda
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
number.c
dlls/jscript/number.c
+9
-1
api.js
dlls/jscript/tests/api.js
+5
-0
No files found.
dlls/jscript/number.c
View file @
3b80361a
...
...
@@ -543,6 +543,14 @@ static const builtin_info_t Number_info = {
NULL
};
static
const
builtin_info_t
NumberInst_info
=
{
JSCLASS_NUMBER
,
{
NULL
,
Number_value
,
0
},
0
,
NULL
,
NULL
,
NULL
};
static
HRESULT
NumberConstr_value
(
script_ctx_t
*
ctx
,
vdisp_t
*
jsthis
,
WORD
flags
,
unsigned
argc
,
VARIANT
*
argv
,
VARIANT
*
retv
,
jsexcept_t
*
ei
)
{
...
...
@@ -605,7 +613,7 @@ static HRESULT alloc_number(script_ctx_t *ctx, jsdisp_t *object_prototype, Numbe
if
(
object_prototype
)
hres
=
init_dispex
(
&
number
->
dispex
,
ctx
,
&
Number_info
,
object_prototype
);
else
hres
=
init_dispex_from_constr
(
&
number
->
dispex
,
ctx
,
&
Number_info
,
ctx
->
number_constr
);
hres
=
init_dispex_from_constr
(
&
number
->
dispex
,
ctx
,
&
Number
Inst
_info
,
ctx
->
number_constr
);
if
(
FAILED
(
hres
))
return
hres
;
...
...
dlls/jscript/tests/api.js
View file @
3b80361a
...
...
@@ -227,6 +227,11 @@ ok(!obj.hasOwnProperty('getTime'), "obj.hasOwnProperty('getTime') is true");
ok
(
!
Date
.
hasOwnProperty
(
'getTime'
),
"Date.hasOwnProperty('getTime') is true"
);
ok
(
Date
.
prototype
.
hasOwnProperty
(
'getTime'
),
"Date.prototype.hasOwnProperty('getTime') is false"
);
obj
=
new
Number
();
ok
(
!
obj
.
hasOwnProperty
(
'toFixed'
),
"obj.hasOwnProperty('toFixed') is true"
);
ok
(
!
Number
.
hasOwnProperty
(
'toFixed'
),
"Number.hasOwnProperty('toFixed') is true"
);
ok
(
Number
.
prototype
.
hasOwnProperty
(
'toFixed'
),
"Number.prototype.hasOwnProperty('toFixed') is false"
);
tmp
=
""
+
new
Object
();
ok
(
tmp
===
"[object Object]"
,
"'' + new Object() = "
+
tmp
);
(
tmp
=
new
Array
).
f
=
Object
.
prototype
.
toString
;
...
...
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