From 19ffc6371c06983fd437b73512101ccc3b14bac2 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 1 Sep 2007 12:56:29 +0000 Subject: * eval_jump.ci (rb_f_catch): generate new tag object if no argument is given. backported from MatzRuby. [ruby-dev:31609] * eval_jump.ci (rb_catch): call #catch without arguments if tag string is NULL. * eval_jump.ci (rb_f_throw): allow throwing non-symbol object. * eval.c (rb_catch_obj): new function to wait throw with arbitrary object. * eval.c (rb_throw_obj): new function to throw arbitrary object. * variable.c (check_autoload_table): prevent multiple calls from RSTRING_PTR(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bootstraptest/test_jump.rb | 7 +++++++ bootstraptest/test_knownbug.rb | 8 -------- 2 files changed, 7 insertions(+), 8 deletions(-) (limited to 'bootstraptest') diff --git a/bootstraptest/test_jump.rb b/bootstraptest/test_jump.rb index a83b6f0ea..9ada6829b 100644 --- a/bootstraptest/test_jump.rb +++ b/bootstraptest/test_jump.rb @@ -230,3 +230,10 @@ assert_equal %q{1}, %q{ m } +assert_equal 'ok', %q{ + begin + catch {|t| throw t, :ok } + rescue ArgumentError + :ng + end +}, '[ruby-dev:31609]' diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb index 382f027b3..b97a08d92 100644 --- a/bootstraptest/test_knownbug.rb +++ b/bootstraptest/test_knownbug.rb @@ -3,11 +3,3 @@ # So all tests will cause failure. # -# catch/throw -assert_equal 'ok', %q{ - begin - catch {|t| throw t, :ok } - rescue ArgumentError - :ng - end -}, '[ruby-dev:31609]' -- cgit