This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
toke.c: Remove unnecessary PL_expect assignment
authorFather Chrysostomos <sprout@cpan.org>
Tue, 26 Aug 2014 01:18:16 +0000 (18:18 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 26 Aug 2014 05:17:03 +0000 (22:17 -0700)
commit91fe6db2b17915d15784e17391098d40d8c142d3
tree33438a3a86d3e48b29727e35add108f5f940e3d7
parent444d4f5cfb8c0054331f6949177c65c0b333e7d5
toke.c: Remove unnecessary PL_expect assignment

In this code path, we know that the next token is a parenthesis.  It
also happens that the lexer always emits parentheses the same way,
so there is no question as to how to interpret it.  Hence, the value
of PL_expect is actually irrelevant here.
toke.c