Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Guard mux-pushing simplifications behind option #256
Guard mux-pushing simplifications behind option #256
Changes from 4 commits
f131796
72dd5ff
7c90b6a
512eca6
fa36855
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quick check: looks like you had to do this in 6-8 other locations as well. Do you think it's reasonable to float this
getOpt
to the top before the primary case on expr so that the case pattern match branches can be largely as they were with just thepmo
check? I'm fine either way (based on the assumption thatgetOpt
is inexpensive), but just wanted to call this out for you to make a decision on.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I understand you correctly, you are suggesting to call
getOpt
at the beginning of each method's implementation to minimize the diff to the actual logic of the code itself? If so, I'm not sure that that would actually have the desired effect. In particular, each method of thisIsExprBuilder
instance is implemented using pattern guards, so in order to callgetOpt
before the pattern guards, we'd likely need to do something like this:But using
MultiWayIf
(or a similar refactoring) here would cause the diff to be just as large (if not larger) than it is currently. As such, I opted to localize thegetOpt
calls to the parts of the code that actually make use of the option.