From cff2b2b66626e5aee5598f98b1f855249ca2f282 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 8 Oct 2013 12:08:20 +0000 Subject: * vm_backtrace.c, include/ruby/debug.h: add new APIs * VALUE rb_profile_frame_method_name(VALUE frame) * VALUE rb_profile_frame_qualified_method_name(VALUE frame) * iseq.c (rb_iseq_klass), internal.h: add new internal function rb_iseq_method_name(). * ext/-test-/debug/profile_frames.c (profile_frames), test/-ext-/debug/test_profile_frames.rb: add a test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/-test-/debug/profile_frames.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/-test-') diff --git a/ext/-test-/debug/profile_frames.c b/ext/-test-/debug/profile_frames.c index cbabe1b015..5d9501046c 100644 --- a/ext/-test-/debug/profile_frames.c +++ b/ext/-test-/debug/profile_frames.c @@ -26,6 +26,8 @@ profile_frames(VALUE self, VALUE start_v, VALUE num_v) rb_ary_push(ary, rb_profile_frame_first_lineno(buff[i])); rb_ary_push(ary, rb_profile_frame_classpath(buff[i])); rb_ary_push(ary, rb_profile_frame_singleton_method_p(buff[i])); + rb_ary_push(ary, rb_profile_frame_method_name(buff[i])); + rb_ary_push(ary, rb_profile_frame_qualified_method_name(buff[i])); rb_ary_push(result, ary); } -- cgit v1.2.3