Project

General

Profile

ActionsLike0

Bug #2402

closed

super in instance_eval

Added by shugo (Shugo Maeda) over 15 years ago. Updated over 9 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 1.9.2dev (2009-11-24 trunk 25909) [i686-linux]
Backport:
[ruby-dev:39772]

Description

instance_evalのブロック内でsuperを呼ぶと、instance_evalで変更された
selfに対してsuperの呼び出しを行ってしまうようです。

defiant:build$ cat t.rb
class Foo
  def foo
    p self
  end
end

class Bar < Foo
  def foo
    x = Object.new
    x.instance_eval do
      super
    end
  end
end

Bar.new.foo
defiant:build$ ./ruby-trunk.1124 -v t.rb
ruby 1.9.2dev (2009-11-24 trunk 25909) [i686-linux]
#<Object:0x8590f6c>

Foo#fooが呼ばれるのにselfObjectという、ちょっとおかしなことになっています。
ちょっと自信がありませんが、一応パッチを添付します。


Files

super_in_instance_eval_fix.diff (2.03 KB) super_in_instance_eval_fix.diff shugo (Shugo Maeda), 11/25/2009 05:55 PM

Related issues 2 (0 open2 closed)

Related to Ruby - Bug #3136: reuse of singleton method definition causes SEGVClosedko1 (Koichi Sasada)04/12/2010Actions
Related to Ruby - Bug #11636: super in instance_eval in a method defined in a module is invoked with a wrong receiverClosedko1 (Koichi Sasada)Actions
#2

Updated by ujihisa (Tatsuhiro Ujihisa) over 15 years ago

  • Status changed from Open to Assigned
  • Assignee set to matz (Yukihiro Matsumoto)
#3

Updated by mame (Yusuke Endoh) almost 15 years ago

  • Assignee changed from matz (Yukihiro Matsumoto) to ko1 (Koichi Sasada)
#5

Updated by mame (Yusuke Endoh) almost 15 years ago

  • Target version set to 2.0.0

Updated by nahi (Hiroshi Nakamura) almost 14 years ago

  • Target version changed from 2.0.0 to 1.9.3

Updated by ko1 (Koichi Sasada) over 13 years ago

  • Target version changed from 1.9.3 to 2.0.0
#8

Updated by shugo (Shugo Maeda) over 12 years ago

  • Status changed from Assigned to Closed
  • % Done changed from 0 to 100

Updated by shugo (Shugo Maeda) over 12 years ago

  • Status changed from Closed to Open

Updated by ko1 (Koichi Sasada) over 12 years ago

  • Priority changed from Normal to 5
#13

Updated by tarui (Masaya Tarui) over 12 years ago

  • Status changed from Open to Assigned

Updated by shugo (Shugo Maeda) over 12 years ago

  • Assignee changed from ko1 (Koichi Sasada) to matz (Yukihiro Matsumoto)

Updated by shugo (Shugo Maeda) about 12 years ago

  • Category set to core
#17

Updated by shugo (Shugo Maeda) about 12 years ago

  • Status changed from Assigned to Closed

Updated by nobu (Nobuyoshi Nakada) over 9 years ago

  • Description updated (diff)
#19

Updated by shugo (Shugo Maeda) over 9 years ago

  • Related to Bug #11636: super in instance_eval in a method defined in a module is invoked with a wrong receiver added
ActionsLike0

Also available in: Atom PDF