-
-
Notifications
You must be signed in to change notification settings - Fork 159
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
Dir.exist? typecheck issue #491
Comments
Any help would be appreciated |
Confirmed. I'm still trying to determine the root cause, but I should be able to repair it with a core fill. (Side note: the problem is already resolved in the RBS version of core documentation.) |
how to upgrade to RBS branch? |
Since the RBS branch is unreleased and still in development, you'd have to either 1) build and install your own gem from a clone of the branch, or 2) specify the branch in your Gemfile, e.g., Note that RBS support is not yet stable, so I don't recommend using it unless you're specifically interested in testing and troubleshooting it. |
@castwide, would you have an example of what a "core fill" is? I would be glad to submit a PR for this. |
@kamaradclimber Override.from_comment('Dir.exist?', %(
@overload exist?(file_name)
@param file_name [String]
@return [Boolean]
)), Unfortunately, that doesn't appear to work. Not sure what the problem is. |
For some reason my ruby documentation does not allow the passing of an argument to
Dir.exist?
Dir.exist?
should take an argument following the ruby docs (2.7.2):The text was updated successfully, but these errors were encountered: