* parse.y (must_be_dynamic_symbol): show the name if it is a
  static symbol.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-05-01 10:53:18 +00:00
Родитель f7397d988a
Коммит ad528e85c6
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -10457,6 +10457,9 @@ static ID intern_str(VALUE str);
static void
must_be_dynamic_symbol(VALUE x)
{
if (STATIC_SYM_P(x)) {
rb_raise(rb_eTypeError, "wrong argument %+"PRIsVALUE" (expected dynamic Symbol)", x);
}
if (SPECIAL_CONST_P(x) || BUILTIN_TYPE(x) != T_SYMBOL) {
rb_raise(rb_eTypeError, "wrong argument type %s (expected Symbol)",
rb_builtin_class_name(x));