* compile.c: remove "illegal".

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14388 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-12-21 03:27:31 +00:00
Родитель 9099e29efe
Коммит e613c7cf5f
2 изменённых файлов: 10 добавлений и 6 удалений

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

@ -1,3 +1,7 @@
Fri Dec 21 12:26:36 2007 Koichi Sasada <ko1@atdot.net>
* compile.c: remove "illegal".
Fri Dec 21 12:22:20 2007 Nobuyoshi Nakada <nobu@ruby-lang.org> Fri Dec 21 12:22:20 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* keywords, parse.y (__ENCODING__): represent script encoding. * keywords, parse.y (__ENCODING__): represent script encoding.

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

@ -2966,7 +2966,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
} }
ip = ip->parent_iseq; ip = ip->parent_iseq;
} }
COMPILE_ERROR((ERROR_ARGS "Illegal break")); COMPILE_ERROR((ERROR_ARGS "Invalid break"));
} }
break; break;
} }
@ -3020,7 +3020,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
} }
} }
else { else {
COMPILE_ERROR((ERROR_ARGS "Illegal next")); COMPILE_ERROR((ERROR_ARGS "Invalid next"));
} }
} }
break; break;
@ -3081,7 +3081,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
} }
} }
else { else {
COMPILE_ERROR((ERROR_ARGS "Illegal redo")); COMPILE_ERROR((ERROR_ARGS "Invalid redo"));
} }
} }
break; break;
@ -3093,7 +3093,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
INT2FIX(0x04) /* TAG_RETRY */ ); INT2FIX(0x04) /* TAG_RETRY */ );
} }
else { else {
COMPILE_ERROR((ERROR_ARGS "Illegal retry")); COMPILE_ERROR((ERROR_ARGS "Invalid retry"));
} }
break; break;
} }
@ -3788,7 +3788,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
while (is) { while (is) {
if (is->type == ISEQ_TYPE_TOP || is->type == ISEQ_TYPE_CLASS) { if (is->type == ISEQ_TYPE_TOP || is->type == ISEQ_TYPE_CLASS) {
COMPILE_ERROR((ERROR_ARGS "Illegal return")); COMPILE_ERROR((ERROR_ARGS "Invalid return"));
break; break;
} }
else { else {
@ -3820,7 +3820,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
INIT_ANCHOR(args); INIT_ANCHOR(args);
if (iseq->type == ISEQ_TYPE_TOP || iseq->type == ISEQ_TYPE_CLASS) { if (iseq->type == ISEQ_TYPE_TOP || iseq->type == ISEQ_TYPE_CLASS) {
COMPILE_ERROR((ERROR_ARGS "Illegal yield")); COMPILE_ERROR((ERROR_ARGS "Invalid yield"));
} }
if (node->nd_head) { if (node->nd_head) {