mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Get rid of defining methods for tests in core classes
Not to interfere in other tests.
This commit is contained in:
parent
161a20df28
commit
590dc06e38
Notes:
git
2021-01-09 22:38:31 +09:00
26 changed files with 406 additions and 392 deletions
|
@ -1,19 +1,19 @@
|
|||
#include "internal/numeric.h"
|
||||
|
||||
static VALUE
|
||||
int_bignum_p(VALUE self)
|
||||
int_bignum_p(VALUE klass, VALUE self)
|
||||
{
|
||||
return RB_TYPE_P(self, T_BIGNUM) ? Qtrue : Qfalse;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
int_fixnum_p(VALUE self)
|
||||
int_fixnum_p(VALUE klass, VALUE self)
|
||||
{
|
||||
return FIXNUM_P(self) ? Qtrue : Qfalse;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
rb_int_to_bignum(VALUE x)
|
||||
rb_int_to_bignum(VALUE klass, VALUE x)
|
||||
{
|
||||
if (FIXNUM_P(x))
|
||||
x = rb_int2big(FIX2LONG(x));
|
||||
|
@ -21,7 +21,7 @@ rb_int_to_bignum(VALUE x)
|
|||
}
|
||||
|
||||
static VALUE
|
||||
positive_pow(VALUE x, VALUE y)
|
||||
positive_pow(VALUE klass, VALUE x, VALUE y)
|
||||
{
|
||||
return rb_int_positive_pow(NUM2LONG(x), NUM2ULONG(y));
|
||||
}
|
||||
|
@ -29,8 +29,8 @@ positive_pow(VALUE x, VALUE y)
|
|||
void
|
||||
Init_core_ext(VALUE klass)
|
||||
{
|
||||
rb_define_method(rb_cInteger, "bignum?", int_bignum_p, 0);
|
||||
rb_define_method(rb_cInteger, "fixnum?", int_fixnum_p, 0);
|
||||
rb_define_method(rb_cInteger, "to_bignum", rb_int_to_bignum, 0);
|
||||
rb_define_method(rb_cInteger, "positive_pow", positive_pow, 1);
|
||||
rb_define_singleton_method(klass, "bignum?", int_bignum_p, 1);
|
||||
rb_define_singleton_method(klass, "fixnum?", int_fixnum_p, 1);
|
||||
rb_define_singleton_method(klass, "to_bignum", rb_int_to_bignum, 1);
|
||||
rb_define_singleton_method(klass, "positive_pow", positive_pow, 2);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue