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
When a postfix operator (e.g. `?`, `*`, `+`, ...) is applied to epsilon
(aka. the empty string) then we should not render the operator.
Otherwise we can create invalid expressions. For example,
- /aε*/ would become /a*/ which changes the meaning of the expression.
- /ε*/ would become /*/ which is not a valid expression at all and
throws an error on construction.
0 commit comments