1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (PUSH_FRAME): generate unique number to be TAG_JUMP()

destination.

* eval.c (localjump_destination): use unique number in ruby_frame
  for localjump destination.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2003-10-20 08:33:49 +00:00
parent 8405551e6d
commit 6eb98c5ebe
4 changed files with 24 additions and 13 deletions

View file

@ -419,7 +419,7 @@ class TestIterator < Test::Unit::TestCase
def test_return_trace_func
ok = "returned gracefully"
result = "skipped"
result = _test_return_from_builtin(ok)
result = _test_return_trace_func(ok)
ensure
assert_equal(ok, result)
return