Refactor find_answer#686
Merged
imobachgs merged 3 commits intoagama-project:masterfrom Aug 8, 2023
imobachgs:refactor-find_answer
Merged
Refactor find_answer#686imobachgs merged 3 commits intoagama-project:masterfrom imobachgs:refactor-find_answer
find_answer#686imobachgs merged 3 commits intoagama-project:masterfrom
imobachgs:refactor-find_answer
Conversation
imobachgs
commented
Aug 3, 2023
| /// * `question`: question to compare with. | ||
| pub fn responds(&self, question: &GenericQuestion) -> bool { | ||
| if let Some(class) = &self.class { | ||
| if !question.class.eq(class) { |
Contributor
Author
There was a problem hiding this comment.
Alternatively, we can write:
Suggested change
| if !question.class.eq(class) { | |
| if question.class != *class { |
It looks more natural to me, wdyt?
Contributor
There was a problem hiding this comment.
in that case, also do it for question.text below
Contributor
Author
There was a problem hiding this comment.
Yes, an even for e_val.eq(value) below.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Problem
While checking the answers module, I discovered we were using a labeled for. That's perfectly fine, but coming from Ruby I felt that we could use a higher-level approach.
I took it as a refactoring exercise given that the original implementation was OK.
Solution
for). Moreover, I think the logic belongs toQuestionorAnswer.forstructs with calls tofindandall, as they express the intention better.GenericQuestionto avoid spelling the whole module name (agama_lib::questions::GenericQuestionvsGenericQuestion). If tomorrow we decide to change theGenericQuestionto a different place, we need to update all the references. Not to mention that the lines are rather long and harder to read.Testing