compile.c: omit unnecessary defined guard

* compile.c (defined_expr): omit unnecessary defined guard when
  method call has no receiver and no arguments.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-01-03 09:48:43 +00:00
Родитель 0886a02707
Коммит 7e001f288b
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3601,7 +3601,7 @@ defined_expr(rb_iseq_t *iseq, LINK_ANCHOR *const ret,
(type == NODE_CALL ||
(type == NODE_ATTRASGN && !private_recv_p(node)));
if (!lfinish[1]) {
if (!lfinish[1] && (node->nd_args || explicit_receiver)) {
lfinish[1] = NEW_LABEL(nd_line(node));
}
if (node->nd_args) {