parse.y (heredoc_identifier): Update comment for term_len

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yui-knk 2018-07-16 02:07:44 +00:00
Родитель 352446428d
Коммит e70cad6091
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -5980,7 +5980,11 @@ parse_string(struct parser_params *p, rb_strterm_literal_t *quote)
static enum yytokentype
heredoc_identifier(struct parser_params *p)
{
int c = nextc(p), term, func = 0, term_len = 2; /* length of "<<" */
/*
* term_len is length of `<<"END"` except `END`,
* in this case term_len is 4 (<, <, " and ").
*/
int c = nextc(p), term, func = 0, term_len = 2;
enum yytokentype token = tSTRING_BEG;
long len;
int newline = 0;