Skip to content

Commit f02270d

Browse files
author
md-work
committed
Debugging version of previous commit (40fc4ae), to wrap &blocks only when there is a Func check. (bug 278)
1 parent 40fc4ae commit f02270d

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

lib/contracts/call_with.rb

+13-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,19 @@ def call_with_inner(returns, this, *args, &blk)
8181
method.call(*args, &blk)
8282
else
8383
# original method name reference
84-
blk = lambda { |*params| blk.call(*params) } if blk && blk.is_a?(Contract)
85-
method.send_to(this, *args, &blk)
84+
target_block = nil
85+
blk_is_contract = false
86+
if blk
87+
if blk.is_a?(Contract) # rubocop:disable Style/IfUnlessModifier
88+
blk_is_contract = true
89+
end
90+
end
91+
if blk_is_contract # rubocop:disable Style/ConditionalAssignment
92+
target_block = lambda { |*params| blk.call(*params) }
93+
else
94+
target_block = blk
95+
end
96+
method.send_to(this, *args, &target_block)
8697
end
8798

8899
unless @ret_validator[result]

0 commit comments

Comments
 (0)