From 354907d0f6a4344fdd626c4a267f23ee33e86e6e Mon Sep 17 00:00:00 2001 From: zzak Date: Mon, 17 Jun 2013 05:31:28 +0000 Subject: * vm_backtrace.c: Update rdoc for Backtrace#label with @_ko1 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41348 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_backtrace.c | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'vm_backtrace.c') diff --git a/vm_backtrace.c b/vm_backtrace.c index 1cc0d07f12..3287c1f950 100644 --- a/vm_backtrace.c +++ b/vm_backtrace.c @@ -177,10 +177,27 @@ location_label(rb_backtrace_location_t *loc) * * Usually consists of method, class, module, etc names with decoration. * - * For example, using +caller_locations.rb+ from Thread::Backtrace::Location + * Consider the following example: + * + * def foo + * puts caller_locations(0).first.label + * + * 1.times do + * puts caller_locations(0).first.label + * + * 1.times do + * puts caller_locations(0).first.label + * end + * + * end + * end + * + * The result of calling +foo+ is this: + * + * label: foo + * label: block in foo + * label: block (2 levels) in foo * - * loc = c(0..1).first - * loc.label #=> a */ static VALUE location_label_m(VALUE self) -- cgit v1.2.3