source_location()
public
Returns the Ruby source filename and
line number containing this method or nil if this method was not defined in
Ruby (i.e. native).
VALUE
rb_method_location(VALUE method)
{
rb_method_definition_t *def = method_get_def(method);
return method_def_location(def);
}