source_location()
Returns the Ruby source filename and line number containing this proc or nil if this proc was not defined in Ruby (i.e. native)
VALUE rb_proc_location(VALUE self) { return iseq_location(get_proc_iseq(self, 0)); }