Removed duplicate assignment

This `last_state` is set to `lex.state` just before the `switch`
statement, and `token_flush` nor `nextc` never change the state.
This commit is contained in:
Nobuyoshi Nakada 2019-07-10 00:20:00 +09:00
parent 57b8ca21f1
commit 49cad67635
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60

View File

@ -8845,7 +8845,6 @@ parser_yylex(struct parser_params *p)
return '=';
case '<':
last_state = p->lex.state;
c = nextc(p);
if (c == '<' &&
!IS_lex_state(EXPR_DOT | EXPR_CLASS) &&