Project

General

Profile

Actions

Bug #21123

closed

instance_exec with curried proc

Added by taichi730 (Taichi Ishitani) 3 months ago. Updated 3 months ago.

Status:
Rejected
Assignee:
-
Target version:
-
ruby -v:
3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x86_64-linux]
[ruby-dev:<unknown>]

Description

I have a question about behavior of #instance_exec with a curried proc.

When running #instance_exex with a curried proc, it appears that the given proc is executed on the context where it is created but not the receiver object.

Example code:

a = Object.new
def a.foo(n)
  p
end

b = proc { |n| foo(n) }.curry
a.instance_exec(0, &b)

Execution result:

$ ruby test.rb
test.rb:6:in 'block in <main>': undefined method 'foo' for main (NoMethodError)

b = proc { |n| foo(n) }.curry
               ^^^
Did you mean?  for
        from test.rb:7:in 'BasicObject#instance_exec'
        from test.rb:7:in '<main>'

Is this intentional behavior?
I expect that the given curried proc is also executed on the context of the receiver object like a non-curried proc.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0