Commit 9307a5dd authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

jscript: Added String.match implementation for non-regexp arguments.

parent e0413ddf
...@@ -354,6 +354,7 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM ...@@ -354,6 +354,7 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
{ {
StringInstance *This = (StringInstance*)dispex; StringInstance *This = (StringInstance*)dispex;
match_result_t *match_result; match_result_t *match_result;
DispatchEx *regexp;
DispatchEx *array; DispatchEx *array;
VARIANT var, *arg_var; VARIANT var, *arg_var;
DWORD match_cnt, i; DWORD match_cnt, i;
...@@ -361,32 +362,38 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM ...@@ -361,32 +362,38 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
TRACE("\n"); TRACE("\n");
if(dp->cArgs - dp->cNamedArgs != 1) { if(arg_cnt(dp) != 1) {
FIXME("unsupported args\n"); FIXME("unsupported args\n");
return E_NOTIMPL; return E_NOTIMPL;
} }
arg_var = get_arg(dp, 0); arg_var = get_arg(dp, 0);
switch(V_VT(arg_var)) { switch(V_VT(arg_var)) {
case VT_DISPATCH: { case VT_DISPATCH:
DispatchEx *regexp;
regexp = iface_to_jsdisp((IUnknown*)V_DISPATCH(arg_var)); regexp = iface_to_jsdisp((IUnknown*)V_DISPATCH(arg_var));
if(regexp) { if(regexp) {
if(regexp->builtin_info->class == JSCLASS_REGEXP) { if(regexp->builtin_info->class == JSCLASS_REGEXP)
hres = regexp_match(regexp, This->str, This->length, FALSE, &match_result, &match_cnt); break;
jsdisp_release(regexp); 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, &regexp);
SysFreeString(match_str);
if(FAILED(hres)) if(FAILED(hres))
return hres; return hres;
break;
}
jsdisp_release(regexp);
} }
} }
default:
FIXME("implemented only for regexp args\n"); hres = regexp_match(regexp, This->str, This->length, FALSE, &match_result, &match_cnt);
return E_NOTIMPL; jsdisp_release(regexp);
} if(FAILED(hres))
return hres;
if(!match_cnt) { if(!match_cnt) {
TRACE("no match\n"); TRACE("no match\n");
...@@ -415,14 +422,13 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM ...@@ -415,14 +422,13 @@ static HRESULT String_match(DispatchEx *dispex, LCID lcid, WORD flags, DISPPARAM
break; break;
} }
if(FAILED(hres)) { if(SUCCEEDED(hres) && retv) {
jsdisp_release(array);
return hres;
}
V_VT(retv) = VT_DISPATCH; V_VT(retv) = VT_DISPATCH;
V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(array); V_DISPATCH(retv) = (IDispatch*)_IDispatchEx_(array);
return S_OK; }else {
jsdisp_release(array);
}
return hres;
} }
typedef struct { typedef struct {
......
...@@ -151,6 +151,11 @@ arr.concat = String.prototype.concat; ...@@ -151,6 +151,11 @@ arr.concat = String.prototype.concat;
tmp = arr.concat("d"); tmp = arr.concat("d");
ok(tmp === "2,ad", "arr.concat = " + tmp); 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"); r = "- [test] -".replace("[test]", "success");
ok(r === "- success -", "r = " + r + " expected '- success -'"); ok(r === "- success -", "r = " + r + " expected '- success -'");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment