Implement `bind_call` method from Ruby2.7.

parent a016d1d0
...@@ -6,18 +6,6 @@ class Method ...@@ -6,18 +6,6 @@ class Method
} }
end end
def owner
@owner
end
def receiver
@recv
end
def name
@name
end
def <<(other) def <<(other)
->(*args, &block) { call(other.call(*args, &block)) } ->(*args, &block) { call(other.call(*args, &block)) }
end end
......
class UnboundMethod
def owner
@owner
end
def name
@name
end
end
This diff is collapsed.
...@@ -441,3 +441,11 @@ assert 'UnboundMethod#bind' do ...@@ -441,3 +441,11 @@ assert 'UnboundMethod#bind' do
assert_raise(TypeError) { Array.instance_method(:each).bind(1) } assert_raise(TypeError) { Array.instance_method(:each).bind(1) }
assert_kind_of Method, Object.instance_method(:object_id).bind(Object.new) assert_kind_of Method, Object.instance_method(:object_id).bind(Object.new)
end end
assert 'UnboundMethod#bind_call' do
m = Array.instance_method(:size)
assert_equal(:size, m.name)
assert_equal(0, m.bind_call([]))
assert_equal(1, m.bind_call([1]))
assert_equal(2, m.bind_call([1,2]))
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment