[#65451] [ruby-trunk - Feature #10333] [PATCH 3/1] optimize: "yoda literal" == string — ko1@...

Issue #10333 has been updated by Koichi Sasada.

9 messages 2014/10/07

[ruby-core:65919] [ruby-trunk - Bug #10432] [Assigned] wrong receiver of Binding from Method

From: nobu@...
Date: 2014-10-27 08:07:59 UTC
List: ruby-core #65919
Issue #10432 has been reported by Nobuyoshi Nakada.

----------------------------------------
Bug #10432: wrong receiver of Binding from Method
https://bugs.ruby-lang.org/issues/10432

* Author: Nobuyoshi Nakada
* Status: Assigned
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* Category: core
* Target version: current: 2.2.0
* ruby -v: trunk
* Backport: 2.0.0: REQUIRED, 2.1: REQUIRED
----------------------------------------
Methodオブジェクトから`to_proc.binding`で作られたBindingのreceiverが、Methodオブジェクトの元になったオブジェクトではなく、Methodオブジェクトになっています。

~~~ruby
class C
  def foo;end
end
o = C.new
m = o.method(:foo)
p m.receiver                    # #<C:0x007fcada074e58>
p m.to_proc.binding.receiver    # #<Method: C#foo>
~~~

2.0, 2.1では`Binding#receiver`はありませんが、`eval("self")`で同様の結果になります。




-- 
https://bugs.ruby-lang.org/

In This Thread

Prev Next