1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibJS: Implement `RegExpPrototype::exec()'

This implements *only* the builtin exec() function.
This commit is contained in:
AnotherTest 2020-11-22 14:18:49 +03:30 committed by Andreas Kling
parent 8ba273a2f3
commit 210a3db44d
4 changed files with 114 additions and 0 deletions

View file

@ -91,6 +91,7 @@ namespace JS {
P(enumerable) \
P(error) \
P(every) \
P(exec) \
P(exp) \
P(expm1) \
P(fill) \
@ -126,12 +127,15 @@ namespace JS {
P(getUTCSeconds) \
P(global) \
P(globalThis) \
P(groups) \
P(has) \
P(hasOwnProperty) \
P(ignoreCase) \
P(includes) \
P(index) \
P(indexOf) \
P(info) \
P(input) \
P(is) \
P(isArray) \
P(isExtensible) \