Actions
Bug #11809
closedmethod_missing should not be refined
Description
The following code prints [:Refinement, :abc]
, but method_missing
should not be refined because it's indirect call.
class Foo
end
module Bar
refine Foo do
def method_missing(mid, *args)
p [:Refinement, mid, *args]
end
end
end
using Bar
Foo.new.abc
Files
Actions
Like0
Like0Like0Like0