Skip to content
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

Remove unnecessary coupling in comments' call_seq extraction #1289

Merged
merged 1 commit into from
Feb 10, 2025

Conversation

st0012
Copy link
Member

@st0012 st0012 commented Feb 9, 2025

There is no need to pass the method object to RDoc::Comment#extract_call_seq just to assign the result to the method object's call_seq attribute. This unnecessarily complicates the code and makes it harder to understand/refactor, which is evident in the method's tests.

This commit removes the indirection and simplifies the implementation & tests.

There is no need to pass the method object to RDoc::Comment#extract_call_seq
just to assign the result to the method object's call_seq attribute. This
unnecessarily complicates the code and makes it harder to understand/refactor,
which is evident in the method's tests.

This commit removes the indirection and simplifies the implementation &
tests.
@st0012 st0012 changed the title Remove indirection from comments' call_seq extraction Remove unnecessary coupling in comments' call_seq extraction Feb 9, 2025
@st0012 st0012 requested review from tompng and vinistock February 9, 2025 19:40
Copy link
Member

@kou kou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Comment on lines -113 to 115
return if call_seq.empty?
return if call_seq.nil? || call_seq.empty?

@call_seq = call_seq
Copy link
Member

@kou kou Feb 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not related to this PR but we may want to set @call_seq even when call_seq is nil or "":

call_seq = nil if call_seq&.empty?
@call_seq = call_seq

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought about it but it's potentially risky if RDoc relies on this to avoid erasing the current value. Will need to do some testing to make sure it's ok to drop it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It makes sense.

@st0012 st0012 merged commit e93905f into master Feb 10, 2025
51 checks passed
@st0012 st0012 deleted the refactor-call-seq-extraction branch February 10, 2025 15:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

3 participants