Lines Matching defs:matcher
620 JSHandle<JSTaggedValue> matcher = JSObject::GetMethod(thread, regexp, matchTag);
622 if (!matcher->IsUndefined()) {
623 ASSERT(matcher->IsJSFunctionBase());
625 EcmaInterpreter::NewRuntimeCallInfo(thread, matcher, regexp, undefined, 1);
697 // c. Let matcher be ? GetMethod(regexp, @@matchAll).
698 // d. If matcher is not undefined, then
702 JSHandle<JSTaggedValue> matcher = JSObject::GetMethod(thread, regexp, matchAllTag);
704 if (!matcher->IsUndefined()) {
705 // i. Return ? Call(matcher, regexp, « O »).
707 EcmaInterpreter::NewRuntimeCallInfo(thread, matcher, regexp, undefined, 1);