Project

General

Profile

Actions

Bug #7261

closed

Symbol#to_proc to retrieve a method from current refinement

Added by matz (Yukihiro Matsumoto) over 11 years ago. Updated over 11 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 2.0.0dev (2012-11-01 trunk 37415) [i486-linux]
Backport:
[ruby-dev:46345]

Description

Currently Symbol#to_proc retrieves the global definition of the method, since refinement is a lexical scope.
But if possible, it is better that Symbol#to_proc can retrieve a method from current refinement.

module Silly
refine Integer do
def bar; p :bar; end
end
end

module Stupid
using Silly
1.bar # => :bar
[1,2].each(&:bar) # => undefined method `bar'
end

What do you think?

It should be done before 2.0.0 if we merge, to avoid future compatibility issues.

Matz.

Actions #1

Updated by shugo (Shugo Maeda) over 11 years ago

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

This issue was solved with changeset r37418.
Yukihiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.


  • string.c (sym_to_proc, sym_call): A Proc created by Symbol#to_proc
    should close over the current refinements.
    [ruby-dev:46345] [Bug #7261]

  • vm_eval.c (rb_call0, rb_search_method_entry,
    rb_funcall_passing_block_with_refinements): add a new argument
    `refinements' for the above changes.

  • test/ruby/test_refinement.rb: related test.

Actions

Also available in: Atom PDF

Like0
Like0