Project

General

Profile

ActionsLike0

Feature #3222

closed

Can bignums have singleton class & methods?

Added by marcandre (Marc-Andre Lafortune) almost 15 years ago. Updated over 12 years ago.

Status:
Closed
Target version:
[ruby-core:29891]

Description

=begin
Fixing up the rubyspecs led me to the following:

bn = 1 << 100
class << bn
def foo
42
end
end

=> TypeError: can't define singleton method "foo" for Bignum

bn.define_singleton_method(:foo){42}

=> TypeError: can't define singleton method "foo" for Bignum

On the other hand...

module Bar
def foo
42
end
end
class << bn
include Bar
end
bn.foo # => 42

If Ruby won't allow singleton methods for Bignum, then shouldn't it disallow access to the singleton class completely?

See also issue #601
=end


Related issues 2 (0 open2 closed)

Related to Ruby - Bug #601: an instance of Bignum can have singleton methodsClosedmatz (Yukihiro Matsumoto)09/25/2008Actions
Related to Ruby - Feature #6936: Forbid singleton class and instance variabls for floatClosedko1 (Koichi Sasada)08/27/2012Actions

Added by ko1 (Koichi Sasada) over 12 years ago

Revision f3e5f2cd

  • bignum.c (bignew_1): Bignum instances are frozen.
    Feature #3222
  • include/ruby/ruby.h: Fixnum instances are also frozen.
  • class.c (singleton_class_of): check Bignum before
    singleton cheking.
  • test/ruby/test_bignum.rb: add a test.
  • test/ruby/test_fixnum.rb: ditto.
  • test/ruby/marshaltestlib.rb, test/ruby/test_eval.rb,
    test/ruby/test_object.rb: catch up above changes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e

ActionsLike0

Also available in: Atom PDF