* compile.c (defined_expr): no longer distinguish ordinary local

variables and in-block local variables in defined? value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-02-14 00:08:45 +00:00
Родитель 3e874eae07
Коммит 9ba43ab6d4
2 изменённых файлов: 6 добавлений и 3 удалений

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

@ -1,3 +1,8 @@
Wed Feb 14 08:46:25 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* compile.c (defined_expr): no longer distinguish ordinary local
variables and in-block local variables in defined? value.
Wed Feb 14 03:14:42 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/uri/generic.rb (URI::Generic::userinfo): should support

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

@ -2334,10 +2334,8 @@ defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *ret,
/* variables */
case NODE_LVAR:
estr = "local-variable";
break;
case NODE_DVAR:
estr = "local-variable(in-block)";
estr = "local-variable";
break;
case NODE_IVAR: