Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby 3.2で、TracePoint#bindingはCで書かれたメソッドではnilを返すことへの対応 #2838

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions refm/api/src/_builtin/TracePoint
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,11 @@ end

発生したイベントによって生成された [[c:Binding]] オブジェクトを返します。

#@since 3.2
C で記述されたメソッドは binding を生成しないため、
:c_call および :c_return イベントに対しては nil を返すことに注意してください。
#@end

#@samplecode 例
def foo(ret)
ret
Expand All @@ -451,6 +456,10 @@ foo 1

以下のようにする事で同じ値を取得できます。

#@since 3.2
なお、self メソッドは binding が nil になる :c_call および :c_return イベントに対しても正しく動作します。
#@end

#@samplecode 例
trace.binding.eval('self')
#@end
Expand Down