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
304e9fe0
Commit
304e9fe0
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 String.toString implementation.
parent
5fdf258b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
string.c
dlls/jscript/string.c
+21
-2
api.js
dlls/jscript/tests/api.js
+7
-0
No files found.
dlls/jscript/string.c
View file @
304e9fe0
...
...
@@ -88,11 +88,30 @@ static HRESULT String_length(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARA
return
S_OK
;
}
/* ECMA-262 3rd Edition 15.5.4.2 */
static
HRESULT
String_toString
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
VARIANT
*
retv
,
jsexcept_t
*
ei
,
IServiceProvider
*
sp
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
StringInstance
*
string
;
TRACE
(
"
\n
"
);
if
(
!
is_class
(
dispex
,
JSCLASS_STRING
))
{
WARN
(
"this is not a string object
\n
"
);
return
E_FAIL
;
}
string
=
(
StringInstance
*
)
dispex
;
if
(
retv
)
{
BSTR
str
=
SysAllocString
(
string
->
str
);
if
(
!
str
)
return
E_OUTOFMEMORY
;
V_VT
(
retv
)
=
VT_BSTR
;
V_BSTR
(
retv
)
=
str
;
}
return
S_OK
;
}
static
HRESULT
String_valueOf
(
DispatchEx
*
dispex
,
LCID
lcid
,
WORD
flags
,
DISPPARAMS
*
dp
,
...
...
dlls/jscript/tests/api.js
View file @
304e9fe0
...
...
@@ -26,6 +26,13 @@ ok(getVT("".length) == "VT_I4", "\"\".length = " + "".length);
ok
(
"abc"
.
length
===
3
,
"
\"
abc
\"
.length = "
+
"abc"
.
length
);
ok
(
String
.
prototype
.
length
===
0
,
"String.prototype.length = "
+
String
.
prototype
.
length
);
tmp
=
""
.
toString
();
ok
(
tmp
===
""
,
"''.toString() = "
+
tmp
);
tmp
=
"test"
.
toString
();
ok
(
tmp
===
"test"
,
"''.toString() = "
+
tmp
);
tmp
=
"test"
.
toString
(
3
);
ok
(
tmp
===
"test"
,
"''.toString(3) = "
+
tmp
);
tmp
=
"abc"
.
charAt
(
0
);
ok
(
tmp
===
"a"
,
"'abc',charAt(0) = "
+
tmp
);
tmp
=
"abc"
.
charAt
(
1
);
...
...
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