Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5058c1d1
Commit
5058c1d1
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 Boolean properties.
parent
6e4f74f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
bool.c
dlls/jscript/bool.c
+9
-1
api.js
dlls/jscript/tests/api.js
+5
-0
No files found.
dlls/jscript/bool.c
View file @
5058c1d1
...
...
@@ -117,6 +117,14 @@ static const builtin_info_t Bool_info = {
NULL
};
static
const
builtin_info_t
BoolInst_info
=
{
JSCLASS_BOOLEAN
,
{
NULL
,
Bool_value
,
0
},
0
,
NULL
,
NULL
,
NULL
};
static
HRESULT
BoolConstr_value
(
script_ctx_t
*
ctx
,
vdisp_t
*
jsthis
,
WORD
flags
,
unsigned
argc
,
VARIANT
*
argv
,
VARIANT
*
retv
,
jsexcept_t
*
ei
)
{
...
...
@@ -168,7 +176,7 @@ static HRESULT alloc_bool(script_ctx_t *ctx, jsdisp_t *object_prototype, BoolIns
if
(
object_prototype
)
hres
=
init_dispex
(
&
bool
->
dispex
,
ctx
,
&
Bool_info
,
object_prototype
);
else
hres
=
init_dispex_from_constr
(
&
bool
->
dispex
,
ctx
,
&
Bool_info
,
ctx
->
bool_constr
);
hres
=
init_dispex_from_constr
(
&
bool
->
dispex
,
ctx
,
&
Bool
Inst
_info
,
ctx
->
bool_constr
);
if
(
FAILED
(
hres
))
{
heap_free
(
bool
);
...
...
dlls/jscript/tests/api.js
View file @
5058c1d1
...
...
@@ -217,6 +217,11 @@ ok(Array.prototype.hasOwnProperty('length'), "Array.prototype.hasOwnProperty('le
ok
(
!
obj
.
hasOwnProperty
(
'sort'
),
"obj.hasOwnProperty('sort') is true"
);
ok
(
obj
.
hasOwnProperty
(
'length'
),
"obj.hasOwnProperty('length') is true"
);
obj
=
new
Boolean
(
false
);
ok
(
!
obj
.
hasOwnProperty
(
'toString'
),
"obj.hasOwnProperty('toString') is true"
);
ok
(
!
Boolean
.
hasOwnProperty
(
'toString'
),
"Boolean.hasOwnProperty('toString') is true"
);
ok
(
Boolean
.
prototype
.
hasOwnProperty
(
'toString'
),
"Boolean.prototype.hasOwnProperty('toString') 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