mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
jscript: Added String.match implementation for non-regexp arguments.
This commit is contained in:
parent
e0413ddfe5
commit
9307a5ddfd
@ -354,6 +354,7 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
|
||||
{
|
||||
StringInstance *This = (StringInstance*)dispex;
|
||||
match_result_t *match_result;
|
||||
DispatchEx *regexp;
|
||||
DispatchEx *array;
|
||||
VARIANT var, *arg_var;
|
||||
DWORD match_cnt, i;
|
||||
@ -361,33 +362,39 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
|
||||
|
||||
TRACE("\n");
|
||||
|
||||
if(dp->cArgs - dp->cNamedArgs != 1) {
|
||||
if(arg_cnt(dp) != 1) {
|
||||
FIXME("unsupported args\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
arg_var = get_arg(dp, 0);
|
||||
switch(V_VT(arg_var)) {
|
||||
case VT_DISPATCH: {
|
||||
DispatchEx *regexp;
|
||||
|
||||
case VT_DISPATCH:
|
||||
regexp = iface_to_jsdisp((IUnknown*)V_DISPATCH(arg_var));
|
||||
if(regexp) {
|
||||
if(regexp->builtin_info->class == JSCLASS_REGEXP) {
|
||||
hres = regexp_match(regexp, This->str, This->length, FALSE, &match_result, &match_cnt);
|
||||
jsdisp_release(regexp);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
if(regexp->builtin_info->class == JSCLASS_REGEXP)
|
||||
break;
|
||||
}
|
||||
jsdisp_release(regexp);
|
||||
}
|
||||
default: {
|
||||
BSTR match_str;
|
||||
|
||||
hres = to_string(dispex->ctx, arg_var, ei, &match_str);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
hres = create_regexp_str(dispex->ctx, match_str, SysStringLen(match_str), NULL, 0, ®exp);
|
||||
SysFreeString(match_str);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
}
|
||||
default:
|
||||
FIXME("implemented only for regexp args\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
hres = regexp_match(regexp, This->str, This->length, FALSE, &match_result, &match_cnt);
|
||||
jsdisp_release(regexp);
|
||||
if(FAILED(hres))
|
||||
return hres;
|
||||
|
||||
if(!match_cnt) {
|
||||
TRACE("no match\n");
|
||||
|
||||
@ -415,14 +422,13 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
|
||||
break;
|
||||
}
|
||||
|
||||
if(FAILED(hres)) {
|
||||
if(SUCCEEDED(hres) && retv) {
|
||||
V_VT(retv) = VT_DISPATCH;
|
||||
V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(array);
|
||||
}else {
|
||||
jsdisp_release(array);
|
||||
return hres;
|
||||
}
|
||||
|
||||
V_VT(retv) = VT_DISPATCH;
|
||||
V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(array);
|
||||
return S_OK;
|
||||
return hres;
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
|
@ -151,6 +151,11 @@ arr.concat = String.prototype.concat;
|
||||
tmp = arr.concat("d");
|
||||
ok(tmp === "2,ad", "arr.concat = " + tmp);
|
||||
|
||||
m = "a+bcabc".match("a+");
|
||||
ok(typeof(m) === "object", "typeof m is not object");
|
||||
ok(m.length === 1, "m.length is not 1");
|
||||
ok(m["0"] === "a", "m[0] is not \"ab\"");
|
||||
|
||||
r = "- [test] -".replace("[test]", "success");
|
||||
ok(r === "- success -", "r = " + r + " expected '- success -'");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user