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 there are from-state actions that should be executed on EOF we are currently not falling through to execute them. We need to check for from-state actions and generate the fall through.
The text was updated successfully, but these errors were encountered:
From-state actions now execute on EOF, but we don't check for their presence
when deciding if we should test against EOF. This led to from-state actions
executing only if other conditions necessitating EOF-testing are present. Added
the check.
refs adrian-thurston/ragel#80
With the fix in for #80, test cases that embed from-state actions, but no eof
actions, now need to have eof set. Updating output to reflect the calls on eof
is also required in some cases.
When there are from-state actions that should be executed on EOF we are currently not falling through to execute them. We need to check for from-state actions and generate the fall through.
The text was updated successfully, but these errors were encountered: