Method: RubyProf::MethodInfo#line
- Defined in:
- ext/ruby_prof/rp_method.c
#line_no ⇒ Integer
returns the line number of the method
406 407 408 409 410 |
# File 'ext/ruby_prof/rp_method.c', line 406
static VALUE prof_method_line(VALUE self)
{
prof_method_t* method = prof_get_method(self);
return INT2FIX(method->source_line);
}
|