[MacRuby] #1123: does not process the "ensure" when called the "next".
#1123: does not process the "ensure" when called the "next". ----------------------------------+----------------------------------------- Reporter: watson1978@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: ----------------------------------+----------------------------------------- Test Script: {{{ #!ruby $result = [] [1, 2, 3].each do |i| begin $result << i next ensure $result << :ensure end end p $result }}} Result: {{{ $ ruby19 test.rb [1, :ensure, 2, :ensure, 3, :ensure] $ macruby test.rb [1, 2, 3] }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/1123> MacRuby <http://macruby.org/>
#1123: does not process the "ensure" when called the "next". ----------------------------------+----------------------------------------- Reporter: watson1978@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: blocker | Milestone: MacRuby 0.9 Component: MacRuby | Resolution: fixed Keywords: | ----------------------------------+----------------------------------------- Changes (by lsansonetti@…): * status: new => closed * resolution: => fixed * milestone: => MacRuby 0.9 Comment: Should be fixed in r5201. -- Ticket URL: <http://www.macruby.org/trac/ticket/1123#comment:1> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby