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
c0af3a57
Commit
c0af3a57
authored
Jun 04, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added Date_setTime implementation.
parent
c144859b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
2 deletions
+31
-2
date.c
dlls/jscript/date.c
+27
-2
api.js
dlls/jscript/tests/api.js
+4
-0
No files found.
dlls/jscript/date.c
View file @
c0af3a57
...
...
@@ -310,8 +310,33 @@ static HRESULT Date_getTimezoneOffset(DispatchEx *dispex, LCID lcid, WORD flags,
static
HRESULT
Date_setTime
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
caller
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
VARIANT
v
;
HRESULT
hres
;
DateInstance
*
date
;
TRACE
(
"
\n
"
);
if
(
!
is_class
(
dispex
,
JSCLASS_DATE
))
{
FIXME
(
"throw TypeError
\n
"
);
return
E_FAIL
;
}
if
(
!
arg_cnt
(
dp
))
{
if
(
retv
)
num_set_nan
(
retv
);
return
S_OK
;
}
hres
=
to_number
(
dispex
->
ctx
,
get_arg
(
dp
,
0
),
ei
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
date
=
(
DateInstance
*
)
dispex
;
date
->
time
=
time_clip
(
num_val
(
&
v
));
if
(
retv
)
num_set_val
(
retv
,
date
->
time
);
return
S_OK
;
}
static
HRESULT
Date_setMiliseconds
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
...
...
dlls/jscript/tests/api.js
View file @
c0af3a57
...
...
@@ -941,6 +941,10 @@ ok(isNaN(0+date.getTime()), "date.getTime() is not NaN");
date
=
new
Date
(
Infinity
);
ok
(
isNaN
(
0
+
date
.
getTime
()),
"date.getTime() is not NaN"
);
ok
(
date
.
setTime
(
123
)
===
123
,
"date.setTime(123) !== 123"
);
ok
(
date
.
setTime
(
"123"
,
NaN
)
===
123
,
"date.setTime(
\"
123
\"
) !== 123"
);
ok
(
isNaN
(
date
.
setTime
(
NaN
)),
"date.setTime(NaN) is not NaN"
);
ok
(
typeof
(
Math
.
PI
)
===
"number"
,
"typeof(Math.PI) = "
+
typeof
(
Math
.
PI
));
ok
(
Math
.
floor
(
Math
.
PI
*
100
)
===
314
,
"Math.PI = "
+
Math
.
PI
);
Math
.
PI
=
"test"
;
...
...
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