mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 01:54:00 +02:00
* vm.c (rb_iter_break_value): new function to break a block with
the value. [ruby-dev:45132] [Feature #5895] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34369 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d03199b6d6
commit
04726dd749
7 changed files with 43 additions and 4 deletions
15
ext/-test-/iter/break.c
Normal file
15
ext/-test-/iter/break.c
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include <ruby.h>
|
||||
|
||||
static VALUE
|
||||
iter_break_value(VALUE self, VALUE val)
|
||||
{
|
||||
rb_iter_break_value(val);
|
||||
return self; /* not reached */
|
||||
}
|
||||
|
||||
void
|
||||
Init_break(void)
|
||||
{
|
||||
VALUE breakable = rb_define_module_under(rb_define_module("Bug"), "Breakable");
|
||||
rb_define_module_function(breakable, "iter_break", iter_break_value, 1);
|
||||
}
|
1
ext/-test-/iter/extconf.rb
Normal file
1
ext/-test-/iter/extconf.rb
Normal file
|
@ -0,0 +1 @@
|
|||
create_makefile("-test-/iter/break")
|
Loading…
Add table
Add a link
Reference in a new issue