Files
mruby-mruby/src
Yukihiro "Matz" Matsumoto 1f2d786e32 Avoid direct return from ecall(); fix #3441
There's incompatibility left for mruby.

When you return from `ensure` clause, mruby simply ignores the return
value.  CRuby returns from the method squashing the exception raised.

```
def f
  no_such_method() # NoMethodError
ensure
  return 22
end

p f() # CRuby prints `22`
```
2017-02-11 21:58:47 +09:00
..
2012-04-20 09:39:03 +09:00
2016-09-28 12:29:41 +09:00
2016-09-28 12:29:41 +09:00
2016-05-09 17:19:47 +02:00