From: nobu@... Date: 2014-11-12T09:23:14+00:00 Subject: [ruby-core:66223] [ruby-trunk - Bug #10432] wrong receiver of Binding from Method Issue #10432 has been updated by Nobuyoshi Nakada. Related to Bug #10428: Segmentation fault when modifying local variables of binding obtained from the result of Method#to_proc added ---------------------------------------- Bug #10432: wrong receiver of Binding from Method https://bugs.ruby-lang.org/issues/10432#change-49911 * Author: Nobuyoshi Nakada * Status: Closed * 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 # # p m.to_proc.binding.receiver # # ~~~ 2.0, 2.1������`Binding#receiver`������������������������`eval("self")`������������������������������������ -- https://bugs.ruby-lang.org/