We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sleep(1000)->100.0%panic
func (t *terms) eval() (interface{}, error) { t.mu.Lock() defer t.mu.Unlock() for _, term := range t.chain { if term.mods.allow() { return term.do(), nil } } return nil, nil }
return term.do(), nil causes the following term to not be executed
return term.do(), nil
The text was updated successfully, but these errors were encountered:
It's a real problem. Probably we should redefine the format to support both AND and OR.
AND
OR
Sorry, something went wrong.
@serathius Any interest on this feature? cc @ptabor as well.
No branches or pull requests
return term.do(), nil
causes the following term to not be executedThe text was updated successfully, but these errors were encountered: