エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Feature #12906: do/end blocks work with ensure/rescue/else - Ruby master - Ruby Issue Tracking System
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Feature #12906: do/end blocks work with ensure/rescue/else - Ruby master - Ruby Issue Tracking System
When you want to rescue in a block, you must do this: lambda do begin raise 'err' rescue $! # => ... When you want to rescue in a block, you must do this: lambda do begin raise 'err' rescue $! # => #<RuntimeError: err> end end.call I've wished on numerous occasions that I could omit the begin/end and not need the extra wrapper: lambda do raise 'err' rescue $! # => #<RuntimeError: err> end.call This would be consistent with how classes and methods work: class C raise 'err' rescue $! # => #<Runtime