We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
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
Invoking the .parameters method of a Proc seems to return an empty array, rather than the parameters definition.
Repro steps:
p = Proc.new do |arg1: | puts arg1 end puts "Params: #{p.parameters.inspect}"
Using ruby 2.2.0: (and it is the same for 2.1.x)
Params: [[:keyreq, :arg1]]
Using Jruby-head (ruby9000) as of today:
Params: []
The text was updated successfully, but these errors were encountered:
Yeah sorry we knew about this one from some tagged out tests in MRI but we will make sure we get this for pre2.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Invoking the .parameters method of a Proc seems to return an empty array, rather than the parameters definition.
Repro steps:
Using ruby 2.2.0: (and it is the same for 2.1.x)
Using Jruby-head (ruby9000) as of today:
The text was updated successfully, but these errors were encountered: