vm_eval.c: refine messages
* vm_eval.c (raise_method_missing): refine error messages when a symbol is not given. [Fix GH-1013] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51742 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a14d94418
commit
e26ba49bd1
@ -1,3 +1,8 @@
|
|||||||
|
Thu Sep 3 10:07:49 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* vm_eval.c (raise_method_missing): refine error messages when a
|
||||||
|
symbol is not given. [Fix GH-1013]
|
||||||
|
|
||||||
Wed Sep 2 18:49:55 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
Wed Sep 2 18:49:55 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
|
||||||
|
|
||||||
* ext/psych/*: merge psych master(8737e5b). It contains following fixes.
|
* ext/psych/*: merge psych master(8737e5b). It contains following fixes.
|
||||||
|
@ -693,8 +693,13 @@ raise_method_missing(rb_thread_t *th, int argc, const VALUE *argv, VALUE obj,
|
|||||||
VALUE exc = rb_eNoMethodError;
|
VALUE exc = rb_eNoMethodError;
|
||||||
const char *format = 0;
|
const char *format = 0;
|
||||||
|
|
||||||
if (argc == 0 || !SYMBOL_P(argv[0])) {
|
if (UNLIKELY(argc == 0)) {
|
||||||
rb_raise(rb_eArgError, "no id given");
|
rb_raise(rb_eArgError, "no method names given");
|
||||||
|
}
|
||||||
|
else if (UNLIKELY(!SYMBOL_P(argv[0]))) {
|
||||||
|
const VALUE e = rb_eArgError; /* TODO: TypeError? */
|
||||||
|
rb_raise(e, "method name must be a Symbol but %"PRIsVALUE" is given",
|
||||||
|
rb_obj_class(argv[0]));
|
||||||
}
|
}
|
||||||
|
|
||||||
stack_check();
|
stack_check();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user