-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
<execution>: comment early return control flow #818 #849
Conversation
A question about which places need put this comment. So far I found 11 places with early return: Lines 1289 to 1299 in ff94756
There are also places without early return: Lines 1418 to 1425 in ff94756
Should these be commented as well? |
I think so. I'm not an expert here, but the difference appears to be that some algorithms can return early (e.g. Edited to add: Hmm, after looking at all occurrences of |
Thanks for making it easier to understand this code, and to write correct code in the future! 🎉 |
Resolves #818