mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vm_backtrace.c: unknown name method
* vm_backtrace.c (location_format): adjust unknown name method results to other functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1c90afbc1a
commit
2d1578804b
1 changed files with 8 additions and 4 deletions
|
@ -288,14 +288,18 @@ location_absolute_path_m(VALUE self)
|
|||
static VALUE
|
||||
location_format(VALUE file, int lineno, VALUE name)
|
||||
{
|
||||
VALUE s = rb_enc_sprintf(rb_enc_compatible(file, name), "%s", RSTRING_PTR(file));
|
||||
if (lineno != 0) {
|
||||
return rb_enc_sprintf(rb_enc_compatible(file, name), "%s:%d:in `%s'",
|
||||
RSTRING_PTR(file), lineno, RSTRING_PTR(name));
|
||||
rb_str_catf(s, ":%d", lineno);
|
||||
}
|
||||
rb_str_cat_cstr(s, ":in ");
|
||||
if (NIL_P(name)) {
|
||||
rb_str_cat_cstr(s, "unknown method");
|
||||
}
|
||||
else {
|
||||
return rb_enc_sprintf(rb_enc_compatible(file, name), "%s:in `%s'",
|
||||
RSTRING_PTR(file), RSTRING_PTR(name));
|
||||
rb_str_catf(s, "`%s'", RSTRING_PTR(name));
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Reference in a new issue