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
if
It would be great if we could have an option to automatically convert
b0 && foo() b1 || bar()
into
if b0 foo() end if !b1 bar() end
This is a style that is often preferred for being able to tell whether a branch is taken in code coverage, so it'd be great if it can be enforced.
The text was updated successfully, but these errors were encountered:
i think this would be a good option to have
Sorry, something went wrong.
xref #382
No branches or pull requests
It would be great if we could have an option to automatically convert
into
This is a style that is often preferred for being able to tell whether a branch is taken in code coverage, so it'd be great if it can be enforced.
The text was updated successfully, but these errors were encountered: