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
c3e2a6f9
Commit
c3e2a6f9
authored
Sep 21, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Added Number.toString implementation.
parent
9b74d6a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
2 deletions
+33
-2
number.c
dlls/jscript/number.c
+30
-2
api.js
dlls/jscript/tests/api.js
+3
-0
No files found.
dlls/jscript/number.c
View file @
c3e2a6f9
...
...
@@ -39,11 +39,39 @@ static const WCHAR propertyIsEnumerableW[] =
{
'p'
,
'r'
,
'o'
,
'p'
,
'e'
,
'r'
,
't'
,
'y'
,
'I'
,
's'
,
'E'
,
'n'
,
'u'
,
'm'
,
'e'
,
'r'
,
'a'
,
'b'
,
'l'
,
'e'
,
0
};
static
const
WCHAR
isPrototypeOfW
[]
=
{
'i'
,
's'
,
'P'
,
'r'
,
'o'
,
't'
,
'o'
,
't'
,
'y'
,
'p'
,
'e'
,
'O'
,
'f'
,
0
};
/* ECMA-262 3rd Edition 15.7.4.2 */
static
HRESULT
Number_toString
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
sp
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
NumberInstance
*
number
;
BSTR
str
;
HRESULT
hres
;
TRACE
(
"
\n
"
);
if
(
!
is_class
(
dispex
,
JSCLASS_NUMBER
))
{
FIXME
(
"throw TypeError
\n
"
);
return
E_FAIL
;
}
number
=
(
NumberInstance
*
)
dispex
;
if
(
arg_cnt
(
dp
)
!=
0
)
{
FIXME
(
"unsupported args
\n
"
);
return
E_NOTIMPL
;
}
hres
=
to_string
(
dispex
->
ctx
,
&
number
->
num
,
ei
,
&
str
);
if
(
FAILED
(
hres
))
return
hres
;
if
(
retv
)
{
V_VT
(
retv
)
=
VT_BSTR
;
V_BSTR
(
retv
)
=
str
;
}
else
{
SysFreeString
(
str
);
}
return
S_OK
;
}
static
HRESULT
Number_toLocaleString
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
...
...
dlls/jscript/tests/api.js
View file @
c3e2a6f9
...
...
@@ -85,5 +85,8 @@ tmp = arr.toString("test");
ok
(
tmp
===
"1,2,,false,,,a"
,
"arr.toString() = "
+
tmp
);
var
num
=
new
Number
(
2
);
ok
(
num
.
toString
()
===
"2"
,
"num(2).toString !== 2"
);
var
num
=
new
Number
();
ok
(
num
.
toString
()
===
"0"
,
"num().toString !== 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