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
julia>compile(rep(onenter!(re"a+", :a)))
ERROR: Ambiguous NFA. After inputs "a", observing 'a' lead to conflicting action sets [:a] and nothing
Basically, Automa complains that the input aa can be interpreted as matching re"a+" once, or matching it twice. That's true, of course, but it's probably better if it's always interpreted as matching a single pattern. Maybe. I don't know.
The text was updated successfully, but these errors were encountered:
Currently, on Automa v1:
Basically, Automa complains that the input
aa
can be interpreted as matchingre"a+"
once, or matching it twice. That's true, of course, but it's probably better if it's always interpreted as matching a single pattern. Maybe. I don't know.The text was updated successfully, but these errors were encountered: