We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
1 parent f1a357e commit 6902809Copy full SHA for 6902809
core/src/main/java/org/jruby/ir/targets/YieldSite.java
@@ -67,4 +67,8 @@ public IRubyObject yield(ThreadContext context, Block block, IRubyObject arg) {
67
public IRubyObject yieldSpecific(ThreadContext context, Block block) {
68
return IRRuntimeHelpers.yieldSpecific(context, block);
69
}
70
+
71
+ public IRubyObject yieldValues(ThreadContext context, Block block, IRubyObject[] args) {
72
+ return block.yieldValues(context, args);
73
+ }
74
0 commit comments