diff options
| author | ksss <[email protected]> | 2014-05-16 22:26:47 +0900 |
|---|---|---|
| committer | ksss <[email protected]> | 2014-05-16 22:26:47 +0900 |
| commit | 066c2772e88dff2fcdf11c18d6396b5055cc7b61 (patch) | |
| tree | 482c4ae94222d880cc87fff0d66070cba529d1db | |
| parent | 60051de4019b8aab435f6568b960bdeaff4be815 (diff) | |
| download | mruby-066c2772e88dff2fcdf11c18d6396b5055cc7b61.tar.gz mruby-066c2772e88dff2fcdf11c18d6396b5055cc7b61.zip | |
const_missing error message more detail
| -rw-r--r-- | src/class.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/class.c b/src/class.c index a4f9f2873..f6f936c39 100644 --- a/src/class.c +++ b/src/class.c @@ -1890,8 +1890,16 @@ mrb_mod_const_missing(mrb_state *mrb, mrb_value mod) mrb_sym sym; mrb_get_args(mrb, "n", &sym); - mrb_name_error(mrb, sym, "uninitialized constant %S", - mrb_sym2str(mrb, sym)); + + if (mrb_class_real(mrb_class_ptr(mod)) != mrb->object_class) { + mrb_name_error(mrb, sym, "uninitialized constant %S::%S", + mod, + mrb_sym2str(mrb, sym)); + } + else { + mrb_name_error(mrb, sym, "uninitialized constant %S", + mrb_sym2str(mrb, sym)); + } /* not reached */ return mrb_nil_value(); } |
