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
FiniteAutomaton.test now requires a ReadonlyArray instead of an Iterable.
Words.wordSetToWords now returns an Iterable instead of an IterableIterator.
Removed toPatternString function.
Removed NFA.FromRegexOptions.disableLookarounds. Use NFA.FromRegexOptions.assertions instead.
AST format: Quantifier nodes now have a lazy property to enable non-greedy quantifiers.
JS.Parser no longer implements JS.Literal. Use the JS.Parser.literal property instead.
JS.Parser now resolves backreferences differently. It now supports resolving capturing groups with finite small languages. How small the language is required to be can be controlled via the new JS.ParseOptions.maxBackreferenceWords option (defaults to 100 words). JS.ParseOptions.backreferences also works differently now. See the JS.ParseOptions documentation for more details.