Skip to content

[ruby 2.4] Fixes for Integer#digits in PR #4375#4490

Merged
kares merged 4 commits intojruby:ruby-2.4from
whwilder:ruby-2.4
Feb 24, 2017
Merged

[ruby 2.4] Fixes for Integer#digits in PR #4375#4490
kares merged 4 commits intojruby:ruby-2.4from
whwilder:ruby-2.4

Conversation

@whwilder
Copy link
Contributor

@whwilder whwilder commented Feb 13, 2017

I've split the implementation for Integer#digits amongst Fixnum and Bignum, which should fix the issues in #4375

ref #4293

herwinw and others added 3 commits December 9, 2016 21:19
It passes all the following tests of TestInteger of MRI:

* test_digits
* test_digits_for_negative_numbers
* test_digits_for_invalid_base_numbers
* test_digits_for_non_integral_base_numbers
* test_digits_for_non_numeric_base_argument
Copy link
Member

@headius headius left a comment

Choose a reason for hiding this comment

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

I know some of these style issues were in the original, but you're active so you're the lucky one :-)

@Override
public RubyArray digits(ThreadContext context, IRubyObject base) {

long self = ((RubyFixnum)this).getLongValue();
Copy link
Member

Choose a reason for hiding this comment

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

This is not necessary...this is already known to be RubyFixnum.

*/
@Override
public RubyArray digits(ThreadContext context, IRubyObject base) {
BigInteger self = (this).getValue();
Copy link
Member

Choose a reason for hiding this comment

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

You could just access the field here, or at least call it without the parens. I assume this is just a mistake converting the RubyFixnum-only logic.

public RubyArray digits(ThreadContext context, IRubyObject base) {
BigInteger self = (this).getValue();
if (self.compareTo(new BigInteger("0")) == -1) {
throw context.getRuntime().newMathDomainError("out of domain");
Copy link
Member

Choose a reason for hiding this comment

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

Throw context.runtime into a local variable at the top and reuse it, in the style of other methods.

@whwilder
Copy link
Contributor Author

Thanks for the help! Squashed a few other style issues too.

@whwilder
Copy link
Contributor Author

@headius Is there anything preventing this PR from being merged, or is it just a low priority for the moment?

@kares kares merged commit d84615c into jruby:ruby-2.4 Feb 24, 2017
@kares
Copy link
Member

kares commented Feb 24, 2017

@whwilder great work - wanted to get #digits in as well, thanks :)

@kares kares added this to the JRuby 9.2.0.0 milestone Feb 24, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants