Project

General

Profile

Actions

Backport #2099

closed

Error when getting binding for a method via converting it to a Proc

Added by webnov8 (Todd A) over 14 years ago. Updated almost 13 years ago.

Status:
Closed
[ruby-core:25589]

Description

=begin
Not sure if this is allowed in Ruby 1.9.1 but from a poll on #ruby-lang it seems like it works in 1.8. I am running 1.9.1p243 and the following throws an argument error:

class Foo
def bar
a = 'apple'
b= 22
puts 'inside bar'
end
end

obj = Foo.new
pro = obj.method(:bar).to_proc
pro.call # 'inside bar'

b = pro.binding # Can't create Binding from C level Proc (ArgumentError)
=end


Related issues 1 (0 open1 closed)

Related to Ruby master - Bug #10428: Segmentation fault when modifying local variables of binding obtained from the result of Method#to_procClosed10/26/2014Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0