(regex, string)
| 731 | } |
| 732 | |
| 733 | function SideEffectFreeRegExpPrototypeExec(regex, string) { |
| 734 | const { RegExp: RegExpFromAnotherRealm } = getInternalGlobal(); |
| 735 | return FunctionPrototypeCall(RegExpFromAnotherRealm.prototype.exec, regex, string); |
| 736 | } |
| 737 | |
| 738 | const crossRealmRegexes = new SafeWeakMap(); |
| 739 | function getCrossRealmRegex(regex) { |
no test coverage detected
searching dependent graphs…