You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit implements the flag itself and teaches the regex engine to
reject previously accepted patterns when in unicodeSets mode.
Refs: quickjs-ng#228
This commit implements the flag itself and teaches the regex engine to
reject previously accepted patterns when in unicodeSets mode.
Refs: quickjs-ng/quickjs#228
https://github.com/tc39/proposal-regexp-v-flag is a number of things that I'll break out into separate pull requests:
the flag and patterns that turn into early SyntaxErrors, ex.
/[a-]/v
(accepted byu
but notv
)properties of strings, that is, code point sequences; ex.
/\p{RGI_Emoji}/v
- what https://github.com/tc39/proposal-regexp-unicode-sequence-properties was advocating before it got merged into the regexp-v-flag proposalset union and difference, ex.
/\p{Format}&&\p{Control}/v
and/[\p{Decimal_Number}--[0-9]]/v
(also nested character classes)The text was updated successfully, but these errors were encountered: