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

Add return types for callbacks in Ripper::SexpBuilder #2315

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

apiology
Copy link

No description provided.

@apiology
Copy link
Author

I wasn't quite sure how to test callbacks like these with your tooling - open to ideas!

@apiology apiology marked this pull request as draft March 11, 2025 13:18

def on_CHAR: (untyped tok) -> untyped
def on_CHAR: (String tok) -> [Symbol, String, [Integer?, Integer?]]
Copy link
Author

Choose a reason for hiding this comment

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

@apiology
Copy link
Author

This change is limited as I'm not terribly familiar with Ripper. These changes will help https://github.com/castwide/solargraph pass its own typechecking; here's the use it makes of Ripper: https://github.com/castwide/solargraph/blob/41b892397be99fd6b445d1e308a3f512c5ec32e9/lib/solargraph/parser/comment_ripper.rb#L4

cc: @aamine in case you have thoughts

@apiology apiology marked this pull request as ready for review March 11, 2025 13:46
@apiology
Copy link
Author

Should I push up additional fixes to RBS types?

@ksss
Copy link
Collaborator

ksss commented Mar 26, 2025

@apiology
Thank you for requesting.
There are many changes and we are finding it difficult to confirm each one.
Can you provide a test code?

@apiology
Copy link
Author

I'm sorry - I don't know how to test callbacks like these with your tooling. Do you have any ideas? A small example and I can fill in the rest.

@apiology
Copy link
Author

If it helps, I am successfully using my fork of this repo to typecheck this file: https://github.com/castwide/solargraph/blob/0e82bbdcc9da7343dd028373797f2fe0373dbf6a/lib/solargraph/parser/comment_ripper.rb

Copy link
Collaborator

@ksss ksss left a comment

Choose a reason for hiding this comment

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

Since the return values of all callback methods are never used, untyped or void seems appropriate.
Callback methods are meant to be overridden in subclasses, so perhaps they shouldn't be defined at all.

I wrote the original signatures myself, but I honestly have no memory of it...

@apiology
Copy link
Author

Since the return values of all callback methods are never used, untyped or void seems appropriate.
Callback methods are meant to be overridden in subclasses, so perhaps they shouldn't be defined at all.

The return values actually are used - they determine what is returned by the overall parse() method - see https://github.com/ruby/ruby/blob/a4a60195502add094fb52a587411bbd0c19facce/ext/ripper/lib/ripper/filter.rb#L59

As you note, Ripper::SexpBuilder is used by subclassing. The return types indicate to the developer what they must return from the methods they write as well as what information they can gain from the superclass method's return value.

Here is the code I would like to be well-typed: https://github.com/castwide/solargraph/blob/0e82bbdcc9da7343dd028373797f2fe0373dbf6a/lib/solargraph/parser/comment_ripper.rb - and here is how the resulting code is used: https://github.com/castwide/solargraph/blob/767a5fceb74935d03f6757711bdf610df3e6fd7a/lib/solargraph/parser/parser_gem/class_methods.rb#L17

I wrote the original signatures myself, but I honestly have no memory of it...

I am very familiar with that feeling 😁

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.

2 participants