diff options
author | meatloaf <ktulip2@protonmail.com> | 2021-02-03 20:53:17 -0600 |
---|---|---|
committer | meatloaf <ktulip2@protonmail.com> | 2021-02-04 12:59:54 -0600 |
commit | 24c40b583687e6f67ba57e6c8927515ceb5399ce (patch) | |
tree | 8b2a41127db4e432e31609f354ed62b56a5057e0 /js/src/jit/InlinableNatives.h | |
parent | c5ad76a2875ca5c06c5bbff7b2f2e3ff7b3599c3 (diff) | |
download | uxp-24c40b583687e6f67ba57e6c8927515ceb5399ce.tar.gz |
Issue #1726 - Implement String.replaceAll()
This also implements IsRegExp, as this demands it.
Ported from https://bugzilla.mozilla.org/show_bug.cgi?id=1540021
Diffstat (limited to 'js/src/jit/InlinableNatives.h')
-rw-r--r-- | js/src/jit/InlinableNatives.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/src/jit/InlinableNatives.h b/js/src/jit/InlinableNatives.h index e4fdf7ee2f..01b5f78522 100644 --- a/js/src/jit/InlinableNatives.h +++ b/js/src/jit/InlinableNatives.h @@ -66,6 +66,7 @@ _(RegExpSearcher) \ _(RegExpTester) \ _(IsRegExpObject) \ + _(IntrinsicIsPossiblyWrappedRegExpObject)\ _(RegExpPrototypeOptimizable) \ _(RegExpInstanceOptimizable) \ _(GetFirstDollarIndex) \ |