We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
RBS unexpectedly does not resolve the following module name.
module M module N end module N2 = N end module M::N3 = M::N class C include M::N # ok include M::N2 # It causes `Could not find mixin: M::N2 (RBS::NoMixinFoundError)` include M::N3 # ok end
I expect RBS to resolve all module names, but it raises an error on M::N2.
M::N2
The text was updated successfully, but these errors were encountered:
Fix name resolvor for class/module-alias
cedb3d6
Fix ruby#2293
Fix name resolver for class/module-alias
8729c5e
2223292
Successfully merging a pull request may close this issue.
RBS unexpectedly does not resolve the following module name.
I expect RBS to resolve all module names, but it raises an error on
M::N2
.The text was updated successfully, but these errors were encountered: