mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
kernel.c: clear mid for raise and method_missing
Method names need not to be printed in backtrace history.
This commit is contained in:
+2
-1
@@ -423,8 +423,8 @@ mrb_f_raise(mrb_state *mrb, mrb_value self)
|
||||
mrb_value a[2], exc;
|
||||
mrb_int argc;
|
||||
|
||||
|
||||
argc = mrb_get_args(mrb, "|oo", &a[0], &a[1]);
|
||||
mrb->c->ci->mid = 0;
|
||||
switch (argc) {
|
||||
case 0:
|
||||
mrb_raise(mrb, E_RUNTIME_ERROR, "");
|
||||
@@ -527,6 +527,7 @@ mrb_obj_missing(mrb_state *mrb, mrb_value mod)
|
||||
const mrb_value *a;
|
||||
mrb_int alen;
|
||||
|
||||
mrb->c->ci->mid = 0;
|
||||
mrb_get_args(mrb, "n*!", &name, &a, &alen);
|
||||
mrb_method_missing(mrb, name, mod, mrb_ary_new_from_values(mrb, alen, a));
|
||||
/* not reached */
|
||||
|
||||
Reference in New Issue
Block a user