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
E.g., for this code:
switch (s) { case ONE: case TWO: case THREE: doSomething(); default: fail(); }
The first three cases would correspond to a single branch, which is "taken" if s matches ONE, TWO, or THREE, and "not taken" otherwise.
s
ONE
TWO
THREE
The text was updated successfully, but these errors were encountered:
@ksen007 is there any hope of addressing this one?
Sorry, something went wrong.
ksen007
No branches or pull requests
E.g., for this code:
The first three cases would correspond to a single branch, which is "taken" if
s
matchesONE
,TWO
, orTHREE
, and "not taken" otherwise.The text was updated successfully, but these errors were encountered: