Index method aliases with RBS indexer#631
Open
alexcrocha wants to merge 1 commit into03-05-add_receiver_to_methodaliasdefinitionfrom
Open
Index method aliases with RBS indexer#631alexcrocha wants to merge 1 commit into03-05-add_receiver_to_methodaliasdefinitionfrom
alexcrocha wants to merge 1 commit into03-05-add_receiver_to_methodaliasdefinitionfrom
Conversation
This was referenced Mar 4, 2026
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Base automatically changed from
02-27-index_includes_prepends_and_extends_with_rbs_indexer
to
main
March 4, 2026 04:20
7c6268e to
28dbeea
Compare
vinistock
reviewed
Mar 5, 2026
28dbeea to
89bb5ce
Compare
9371724 to
97823c7
Compare
89bb5ce to
fd6ae04
Compare
97823c7 to
1315d61
Compare
fd6ae04 to
83ff3e8
Compare
1315d61 to
9b94dda
Compare
e21a565 to
d7a675a
Compare
0a6b50b to
5975a19
Compare
d7a675a to
48da4ca
Compare
5975a19 to
a06d83c
Compare
035dd8c to
67f3b7a
Compare
Handle alias and alias self.x self.y declarations in RBS files. Instance aliases use the enclosing class as owner, while singleton aliases (self. prefix) use SelfReceiver to route through the singleton class during resolution
e2e0984 to
3ef8701
Compare
67f3b7a to
351cfb5
Compare
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.

One more step towards #87.
This PR adds
visit_alias_nodeso method aliases in RBS files are indexed. Both instance aliases (alias bar baz) and singleton aliases (alias self.x self.y) are supported.