(regex, string, replacement)
| 756 | } |
| 757 | |
| 758 | function SideEffectFreeRegExpPrototypeSymbolReplace(regex, string, replacement) { |
| 759 | return getCrossRealmRegex(regex)[SymbolReplace](string, replacement); |
| 760 | } |
| 761 | |
| 762 | function SideEffectFreeRegExpPrototypeSymbolSplit(regex, string, limit = undefined) { |
| 763 | return getCrossRealmRegex(regex)[SymbolSplit](string, limit); |
no test coverage detected
searching dependent graphs…