diff options
author | Koichi Sasada <[email protected]> | 2023-08-01 17:25:20 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2023-08-01 22:46:17 +0900 |
commit | d68c01fd314ebd6dc1d89c95a2734fad4f0953b0 (patch) | |
tree | b8d8794f59990f635eaf984119519f0a9cd51bd1 /iseq.h | |
parent | f11ac06337fc56104172c3241393fd95d3a6c60d (diff) |
support `rescue` event for TracePoint
fix [Feature #19572]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8150
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -83,9 +83,10 @@ ISEQ_ORIGINAL_ISEQ_ALLOC(const rb_iseq_t *iseq, long size) RUBY_EVENT_CALL | \ RUBY_EVENT_RETURN| \ RUBY_EVENT_C_CALL| \ - RUBY_EVENT_C_RETURN| \ - RUBY_EVENT_B_CALL| \ - RUBY_EVENT_B_RETURN| \ + RUBY_EVENT_C_RETURN | \ + RUBY_EVENT_B_CALL | \ + RUBY_EVENT_B_RETURN | \ + RUBY_EVENT_RESCUE | \ RUBY_EVENT_COVERAGE_LINE| \ RUBY_EVENT_COVERAGE_BRANCH) |