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
7301ad4f
Commit
7301ad4f
authored
Jun 22, 2009
by
Piotr Caban
Committed by
Alexandre Julliard
Jun 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added Date_setMonth and Date_setUTCMonth implementation.
parent
233ded05
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
4 deletions
+88
-4
date.c
dlls/jscript/date.c
+86
-4
api.js
dlls/jscript/tests/api.js
+2
-0
No files found.
dlls/jscript/date.c
View file @
7301ad4f
...
...
@@ -1373,18 +1373,100 @@ static HRESULT Date_setUTCDate(DispatchEx *dispex, LCID lcid, WORD flags, DISPPA
return
S_OK
;
}
/* ECMA-262 3rd Edition 15.9.5.38 */
static
HRESULT
Date_setMonth
(
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
;
DOUBLE
t
,
month
,
ddate
;
TRACE
(
"
\n
"
);
if
(
!
is_class
(
dispex
,
JSCLASS_DATE
))
{
FIXME
(
"throw TypeError
\n
"
);
return
E_FAIL
;
}
if
(
!
arg_cnt
(
dp
))
{
FIXME
(
"throw ArgumentNotOptional
\n
"
);
if
(
retv
)
num_set_nan
(
retv
);
return
S_OK
;
}
date
=
(
DateInstance
*
)
dispex
;
t
=
local_time
(
date
->
time
,
date
);
hres
=
to_number
(
dispex
->
ctx
,
get_arg
(
dp
,
0
),
ei
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
month
=
num_val
(
&
v
);
if
(
arg_cnt
(
dp
)
>
1
)
{
hres
=
to_number
(
dispex
->
ctx
,
get_arg
(
dp
,
1
),
ei
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
ddate
=
num_val
(
&
v
);
}
else
ddate
=
date_from_time
(
t
);
t
=
make_date
(
make_day
(
year_from_time
(
t
),
month
,
ddate
),
time_within_day
(
t
));
date
->
time
=
time_clip
(
utc
(
t
,
date
));
if
(
retv
)
num_set_val
(
retv
,
date
->
time
);
return
S_OK
;
}
/* ECMA-262 3rd Edition 15.9.5.39 */
static
HRESULT
Date_setUTCMonth
(
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
;
DOUBLE
t
,
month
,
ddate
;
TRACE
(
"
\n
"
);
if
(
!
is_class
(
dispex
,
JSCLASS_DATE
))
{
FIXME
(
"throw TypeError
\n
"
);
return
E_FAIL
;
}
if
(
!
arg_cnt
(
dp
))
{
FIXME
(
"throw ArgumentNotOptional
\n
"
);
if
(
retv
)
num_set_nan
(
retv
);
return
S_OK
;
}
date
=
(
DateInstance
*
)
dispex
;
t
=
date
->
time
;
hres
=
to_number
(
dispex
->
ctx
,
get_arg
(
dp
,
0
),
ei
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
month
=
num_val
(
&
v
);
if
(
arg_cnt
(
dp
)
>
1
)
{
hres
=
to_number
(
dispex
->
ctx
,
get_arg
(
dp
,
1
),
ei
,
&
v
);
if
(
FAILED
(
hres
))
return
hres
;
ddate
=
num_val
(
&
v
);
}
else
ddate
=
date_from_time
(
t
);
t
=
make_date
(
make_day
(
year_from_time
(
t
),
month
,
ddate
),
time_within_day
(
t
));
date
->
time
=
time_clip
(
t
);
if
(
retv
)
num_set_val
(
retv
,
date
->
time
);
return
S_OK
;
}
static
HRESULT
Date_setFullYear
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
...
...
dlls/jscript/tests/api.js
View file @
7301ad4f
...
...
@@ -1017,6 +1017,8 @@ date.setUTCHours(20);
ok
(
date
.
getUTCHours
()
===
20
,
"date.getUTCHours() = "
+
date
.
getUTCHours
());
date
.
setUTCDate
(
32
);
ok
(
date
.
getUTCDate
()
===
1
,
"date.getUTCDate() = "
+
date
.
getUTCDate
());
date
.
setUTCMonth
(
22
,
37
);
ok
(
date
.
getTime
()
===
60987050010
,
"date.getTime() = "
+
date
.
getTime
());
ok
(
typeof
(
Math
.
PI
)
===
"number"
,
"typeof(Math.PI) = "
+
typeof
(
Math
.
PI
));
ok
(
Math
.
floor
(
Math
.
PI
*
100
)
===
314
,
"Math.PI = "
+
Math
.
PI
);
...
...
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